-- MySQL dump 10.19  Distrib 10.2.44-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: localmarket_wp717
-- ------------------------------------------------------
-- Server version	10.2.44-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpvu_brb_business`
--

DROP TABLE IF EXISTS `wpvu_brb_business`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpvu_brb_business` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `place_id` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `rating` double DEFAULT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `website` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `review_count` int(11) DEFAULT NULL,
  `platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `brb_business_place_id` (`place_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpvu_brb_business`
--

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

--
-- Table structure for table `wpvu_brb_review`
--

DROP TABLE IF EXISTS `wpvu_brb_review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpvu_brb_review` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `business_id` bigint(20) unsigned NOT NULL,
  `review_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rating` int(11) NOT NULL,
  `text` varchar(10000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` int(11) NOT NULL,
  `time_str` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `language` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `author_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `author_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `author_img` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `brb_review_business_id` (`business_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpvu_brb_review`
--

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

--
-- Table structure for table `wpvu_commentmeta`
--

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

--
-- Dumping data for table `wpvu_commentmeta`
--

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

--
-- Table structure for table `wpvu_comments`
--

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

--
-- Dumping data for table `wpvu_comments`
--

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

--
-- Table structure for table `wpvu_links`
--

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

--
-- Dumping data for table `wpvu_links`
--

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

--
-- Table structure for table `wpvu_options`
--

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

--
-- Dumping data for table `wpvu_options`
--

LOCK TABLES `wpvu_options` WRITE;
/*!40000 ALTER TABLE `wpvu_options` DISABLE KEYS */;
INSERT INTO `wpvu_options` VALUES (1,'siteurl','https://capitalbookkeepingco.com','yes'),(2,'home','https://capitalbookkeepingco.com','yes'),(3,'blogname','Capital Bookkeeping Co','yes'),(4,'blogdescription','250-707-8290','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@capitalbookkeepingco.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','','yes'),(24,'time_format','','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:0;s:31:\"business-reviews-bundle/brb.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:35:\"classic-widgets/classic-widgets.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";i:5;s:26:\"post-smtp/postman-smtp.php\";i:6;s:23:\"wordfence/wordfence.php\";i:7;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi_Child','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";s:45:\"ithemes-security-pro/ithemes-security-pro.php\";a:2:{i:0;s:10:\"ITSEC_Core\";i:1;s:16:\"handle_uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','89','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','171','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1708884139','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','49752','yes'),(100,'wpvu_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:73:{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:17:\"et_support_center\";b:1;s:24:\"et_support_center_system\";b:1;s:31:\"et_support_center_remote_access\";b:1;s:31:\"et_support_center_documentation\";b:1;s:27:\"et_support_center_safe_mode\";b:1;s:22:\"et_support_center_logs\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;s:19:\"manage_postman_smtp\";b:1;s:19:\"manage_postman_logs\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";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:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'widget_block','a:4:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:19:\"et_pb_widget_area_1\";a:1:{i:0;s:14:\"recent-posts-2\";}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:19:{i:1693424810;a:1:{s:15:\"wf_scan_monitor\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:24:\"wf_scan_monitor_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1693425624;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:1693426197;a:2:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1693426464;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1693426469;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1693430054;a:1:{s:26:\"wordfence_daily_autoUpdate\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1693430069;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1693432644;a:3:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_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:1693432874;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1693463383;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:1693494035;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1693542795;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:1693590000;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"c349fce7e8be095963486a485ab4d87c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1693590000;}}}}i:1693839852;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}i:1693843200;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1693849200;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"1c22f0d217e269e0974d25c37b923829\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1693849200;}}}}i:1693864644;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:1693936962;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'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1639407852;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(240,'_transient_health-check-site-status-result','{\"good\":\"24\",\"recommended\":\"5\",\"critical\":\"0\"}','yes'),(175,'et_account_status','active','no'),(192,'recently_activated','a:1:{s:72:\"change-admin-email-setting-without-outbound-email/change-admin-email.php\";i:1693336562;}','yes'),(979,'wpseo','a:106:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:20:\"taxonomy_made_public\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"21.0\";s:16:\"previous_version\";s:4:\"20.7\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1640722197;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:32:\"https://capitalbookkeepingco.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:10:{s:15:\"layout_category\";s:15:\"layout_category\";s:10:\"layout_tag\";s:10:\"layout_tag\";s:11:\"layout_pack\";s:11:\"layout_pack\";s:11:\"layout_type\";s:11:\"layout_type\";s:12:\"module_width\";s:12:\"module_width\";s:5:\"scope\";s:5:\"scope\";s:15:\"et_tb_item_type\";s:15:\"et_tb_item_type\";s:16:\"project_category\";s:16:\"project_category\";s:11:\"project_tag\";s:11:\"project_tag\";s:20:\"et_code_snippet_type\";s:20:\"et_code_snippet_type\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:2:{s:8:\"priority\";i:10;s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:1;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1652258756;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";i:3;s:7:\"project\";}s:28:\"last_known_public_taxonomies\";a:9:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:15:\"layout_category\";i:4;s:10:\"layout_tag\";i:5;s:15:\"et_tb_item_type\";i:6;s:16:\"project_category\";i:7;s:11:\"project_tag\";i:8;s:20:\"et_code_snippet_type\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1693419261;s:35:\"wpseo_total_unindexed_general_items\";i:1693332140;s:31:\"wpseo_unindexed_post_link_count\";i:1693419261;s:31:\"wpseo_unindexed_term_link_count\";i:1693337979;s:27:\"wpseo_total_unindexed_posts\";i:1693332586;s:27:\"wpseo_total_unindexed_terms\";i:1693354106;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','yes'),(147,'current_theme','Divi Child Theme','yes'),(148,'theme_mods_Divi_Child','a:6:{i:0;b:0;s:18:\"custom_css_post_id\";i:5;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:7;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:13:\"et_pb_widgets\";a:2:{s:5:\"areas\";a:1:{s:19:\"et_pb_widget_area_1\";s:4:\"post\";}s:6:\"number\";i:1;}}','yes'),(149,'theme_switched','','yes'),(150,'et_pb_cache_notice','a:1:{s:5:\"4.8.1\";s:6:\"ignore\";}','yes'),(146,'finished_updating_comment_type','1','yes'),(206983,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1693459079','no'),(206984,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1693459079','no'),(206985,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1693415879','no'),(206986,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1693459079','no'),(206987,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/wordpress-6-3-1-maintenance-release/\'>WordPress 6.3.1 Maintenance Release</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\'>The Future of WordPress &amp; What’s Next for Gutenberg</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://dothewoo.io/what-was-your-takeaway-from-wordcamp-us/\'>Do The Woo Community: What Was Your Takeaway from WordCamp US?</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/performant-translations-plugin-now-available-on-wordpress-org\'>WPTavern: Performant Translations Plugin Now Available on WordPress.org</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/top-agencies-join-forces-to-publish-free-guide-on-wordpress-for-enterprise\'>WPTavern: Top Agencies Join Forces to Publish Free Guide on WordPress for Enterprise</a></li></ul></div>','no'),(376,'et_pb_contact_form_f544ede8b1e97d3c4f15fe745f3f6d52','off','yes'),(155,'et_core_version','4.22.1','yes'),(157,'et_divi','a:177:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"et_flush_rewrite_rules_library\";s:6:\"4.22.1\";s:31:\"divi_previous_installed_version\";s:6:\"4.19.2\";s:29:\"divi_latest_installed_version\";s:6:\"4.22.1\";s:27:\"divi_skip_font_subset_force\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:23:\"builder_custom_defaults\";O:8:\"stdClass\":0:{}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:29:\"custom_defaults_migrated_flag\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:9:\"divi_logo\";s:0:\"\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:2:\"on\";s:21:\"divi_show_google_icon\";s:2:\"on\";s:24:\"divi_show_instagram_icon\";s:2:\"on\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:18:\"divi_instagram_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:29:\"divi_enable_responsive_images\";s:2:\"on\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:759:\".wpcf7 input, textarea.wpcf7-form-control {\n    background: transparent;\n    border: 2px solid #fff;\n    padding: 10px;\n    font-size: 16px;\n    color: #fff;\n	width: 100%;\n}\n\n\n.wpcf7 ::placeholder{\n  color: #fff;\n \n}\n\n.wpcf7 input[type=text]:focus {\n    border-color: #fff!important;\n    color: #fff;\n}\n\n.wpcf7 form.sent .wpcf7-response-output {\n    font-size: 20px;\n    color: #fff;\n}\n\n.wpcf7 form.invalid .wpcf7-response-output {\n    color: #fff;\n}\n\ntextarea.wpcf7-form-control {\n\n    height: 150px;\n    \n}\n\ninput.wpcf7-form-control.wpcf7-submit.has-spinner {\n    background: #0c71c3;\n    border-color: #0c71c3;\n	  transition: all 0.4s ease;\n}\n\ninput.wpcf7-form-control.wpcf7-submit.has-spinner:hover {\n    background: transparent;\n    border-color: #fff;\n}\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:27:\"et_pb_post_type_integration\";a:3:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:2:\"on\";}s:21:\"et_pb_static_css_file\";s:2:\"on\";s:19:\"et_pb_css_in_footer\";s:2:\"on\";s:25:\"et_pb_product_tour_global\";s:3:\"off\";s:24:\"et_enable_classic_editor\";s:2:\"on\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:325:\"<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-215372493-1\">\r\n</script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-215372493-1\');\r\n</script>\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:19:\"product_tour_status\";a:1:{i:1;s:3:\"off\";}s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:28:\"et_fb_pref_limited_view_mode\";s:9:\"wireframe\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:35:\"et_fb_pref_limited_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:0:\"\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:475;s:33:\"et_fb_pref_modal_dimension_height\";i:399;s:27:\"et_fb_pref_modal_position_x\";i:982;s:27:\"et_fb_pref_modal_position_y\";i:191;s:32:\"et_fb_pref_limited_toolbar_click\";s:5:\"false\";s:34:\"et_fb_pref_limited_toolbar_desktop\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_grid\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_hover\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_phone\";s:4:\"true\";s:33:\"et_fb_pref_limited_toolbar_tablet\";s:4:\"true\";s:36:\"et_fb_pref_limited_toolbar_wireframe\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_zoom\";s:4:\"true\";s:36:\"et_fb_pref_lv_modal_dimension_height\";i:0;s:35:\"et_fb_pref_lv_modal_dimension_width\";i:0;s:30:\"et_fb_pref_lv_modal_position_x\";i:0;s:30:\"et_fb_pref_lv_modal_position_y\";i:0;s:34:\"et_fb_pref_responsive_tablet_width\";i:768;s:35:\"et_fb_pref_responsive_tablet_height\";i:0;s:33:\"et_fb_pref_responsive_phone_width\";i:400;s:34:\"et_fb_pref_responsive_phone_height\";i:0;s:35:\"et_fb_pref_responsive_minimum_width\";i:320;s:35:\"et_fb_pref_responsive_maximum_width\";i:980;s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:29:\"divi_dynamic_module_framework\";s:2:\"on\";s:16:\"divi_dynamic_css\";s:2:\"on\";s:30:\"divi_dynamic_icons_child_theme\";s:5:\"false\";s:22:\"divi_inline_stylesheet\";s:2:\"on\";s:17:\"divi_critical_css\";s:2:\"on\";s:30:\"divi_critical_threshold_height\";s:6:\"Medium\";s:25:\"divi_dynamic_js_libraries\";s:2:\"on\";s:19:\"divi_disable_emojis\";s:2:\"on\";s:20:\"divi_defer_block_css\";s:2:\"on\";s:24:\"divi_google_fonts_inline\";s:2:\"on\";s:51:\"divi_limit_google_fonts_support_for_legacy_browsers\";s:2:\"on\";s:23:\"divi_enable_jquery_body\";s:2:\"on\";s:32:\"divi_enable_jquery_compatibility\";s:2:\"on\";s:29:\"divi_enable_jquery_body_super\";s:5:\"false\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:12:\"divi_favicon\";s:0:\"\";s:46:\"et_fb_pref_builder_enable_visual_theme_builder\";s:4:\"true\";s:29:\"presets_storage_migrated_flag\";b:1;s:39:\"builder_global_presets_history_migrated\";b:1;}','yes'),(158,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(159,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(160,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(161,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(162,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(163,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(164,'et_safe_mode_plugins_allowlist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(165,'et_support_center_installed','true','yes'),(166,'et_images_temp_folder','/home/localmarket/capitalbookkeepingco.com/wp-content/uploads/et_temp','yes'),(167,'et_schedule_clean_images_last_time','1693392697','yes'),(168,'et_bfb_settings','a:2:{s:10:\"enable_bfb\";s:2:\"on\";s:10:\"toggle_bfb\";s:2:\"on\";}','yes'),(170,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(171,'et_support_center_setup_done','processed','yes'),(172,'et_google_api_settings','a:3:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";s:16:\"use_google_fonts\";s:2:\"on\";}','yes'),(173,'et_automatic_updates_options','a:2:{s:8:\"username\";s:7:\"mclelj1\";s:7:\"api_key\";s:40:\"db020a734d778da9affc5f1ddedbde8c80ebb539\";}','no'),(179,'et_support_site_id','PwEZfi1tHU6LFle^G)=Q','yes'),(2378,'et_pb_contact_form_f24397c9c2feb8b02d17e39c628c8d45','off','yes'),(2377,'et_pb_contact_form_7d2b327dc34c049f5df1953972418a43','off','yes'),(2393,'et_pb_contact_form_659a5d2bdb3c0db7e44374d99cde3428','off','yes'),(2032,'et_pb_contact_form_1ee8596e50aad714aecf6482688e9f5b','off','yes'),(2075,'et_pb_contact_form_12b564e9b284b971078b26587b1443b3','off','yes'),(2076,'et_pb_contact_form_faf7d486d108899fb5513e5768605f88','off','yes'),(2077,'et_pb_contact_form_10796f1bbfd2d0f858dbe63df3dc22b7','off','yes'),(2091,'et_pb_contact_form_7763c0c8978cec9ab896a8df26b42443','off','yes'),(5521,'wpseo_sitemap_news_cache_validator','5CP2Q','no'),(4414,'et_pb_contact_form_1c6b4b96dc1f65e7383d78f0e7d13571','off','yes'),(6039,'itsec_dismissed_notices','a:1:{i:0;s:11:\"release-rcp\";}','no'),(6041,'itsec_remind_me_notices','a:1:{s:10:\"unlicensed\";i:1644960634;}','no'),(6042,'itsec_highlighted_logs','a:3:{s:11:\"highlighted\";a:0:{}s:7:\"markers\";a:0:{}s:5:\"muted\";a:1:{s:31:\"notification-center-send-failed\";i:1644960641;}}','no'),(22125,'rewrite_rules','a:357:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:62:\"index.php?taxonomy=layout_category&term=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?taxonomy=layout_category&term=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:51:\"index.php?taxonomy=layout_category&term=$matches[1]\";s:51:\"layout_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=layout_tag&term=$matches[1]&feed=$matches[2]\";s:46:\"layout_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=layout_tag&term=$matches[1]&feed=$matches[2]\";s:27:\"layout_tag/([^/]+)/embed/?$\";s:57:\"index.php?taxonomy=layout_tag&term=$matches[1]&embed=true\";s:39:\"layout_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?taxonomy=layout_tag&term=$matches[1]&paged=$matches[2]\";s:21:\"layout_tag/([^/]+)/?$\";s:46:\"index.php?taxonomy=layout_tag&term=$matches[1]\";s:52:\"layout_pack/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_pack/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:28:\"layout_pack/([^/]+)/embed/?$\";s:58:\"index.php?taxonomy=layout_pack&term=$matches[1]&embed=true\";s:40:\"layout_pack/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_pack&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_pack/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_pack&term=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:58:\"index.php?taxonomy=layout_type&term=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_type&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_type&term=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:59:\"index.php?taxonomy=module_width&term=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?taxonomy=module_width&term=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:48:\"index.php?taxonomy=module_width&term=$matches[1]\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:52:\"index.php?taxonomy=scope&term=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?taxonomy=scope&term=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:41:\"index.php?taxonomy=scope&term=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"et_tb_item_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&feed=$matches[2]\";s:51:\"et_tb_item_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&feed=$matches[2]\";s:32:\"et_tb_item_type/([^/]+)/embed/?$\";s:62:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&embed=true\";s:44:\"et_tb_item_type/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&paged=$matches[2]\";s:26:\"et_tb_item_type/([^/]+)/?$\";s:51:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]\";s:38:\"et_tb_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"et_tb_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"et_tb_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"et_tb_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"et_tb_item/([^/]+)/embed/?$\";s:58:\"index.php?post_type=et_tb_item&name=$matches[1]&embed=true\";s:31:\"et_tb_item/([^/]+)/trackback/?$\";s:52:\"index.php?post_type=et_tb_item&name=$matches[1]&tb=1\";s:39:\"et_tb_item/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&paged=$matches[2]\";s:46:\"et_tb_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&cpage=$matches[2]\";s:35:\"et_tb_item/([^/]+)(?:/([0-9]+))?/?$\";s:64:\"index.php?post_type=et_tb_item&name=$matches[1]&page=$matches[2]\";s:27:\"et_tb_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"et_tb_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"et_tb_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"et_tb_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:45:\"postman_sent_mail/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"postman_sent_mail/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"postman_sent_mail/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"postman_sent_mail/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"postman_sent_mail/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"postman_sent_mail/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"postman_sent_mail/([^/]+)/embed/?$\";s:50:\"index.php?postman_sent_mail=$matches[1]&embed=true\";s:38:\"postman_sent_mail/([^/]+)/trackback/?$\";s:44:\"index.php?postman_sent_mail=$matches[1]&tb=1\";s:46:\"postman_sent_mail/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?postman_sent_mail=$matches[1]&paged=$matches[2]\";s:53:\"postman_sent_mail/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?postman_sent_mail=$matches[1]&cpage=$matches[2]\";s:42:\"postman_sent_mail/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?postman_sent_mail=$matches[1]&page=$matches[2]\";s:34:\"postman_sent_mail/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"postman_sent_mail/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"postman_sent_mail/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"postman_sent_mail/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"postman_sent_mail/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"postman_sent_mail/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"brb_collection/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"brb_collection/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"brb_collection/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"brb_collection/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"brb_collection/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"brb_collection/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"brb_collection/([^/]+)/embed/?$\";s:47:\"index.php?brb_collection=$matches[1]&embed=true\";s:35:\"brb_collection/([^/]+)/trackback/?$\";s:41:\"index.php?brb_collection=$matches[1]&tb=1\";s:43:\"brb_collection/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?brb_collection=$matches[1]&paged=$matches[2]\";s:50:\"brb_collection/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?brb_collection=$matches[1]&cpage=$matches[2]\";s:39:\"brb_collection/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?brb_collection=$matches[1]&page=$matches[2]\";s:31:\"brb_collection/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"brb_collection/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"brb_collection/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"brb_collection/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"brb_collection/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"brb_collection/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_theme_options/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_theme_options/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_theme_options/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_options/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_options/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_theme_options/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_theme_options/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_theme_options&name=$matches[1]&embed=true\";s:37:\"et_theme_options/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_options&name=$matches[1]&tb=1\";s:45:\"et_theme_options/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_options&name=$matches[1]&paged=$matches[2]\";s:52:\"et_theme_options/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_options&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_theme_options/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_options&name=$matches[1]&page=$matches[2]\";s:33:\"et_theme_options/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_theme_options/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_theme_options/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_options/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_options/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_theme_options/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:61:\"et_code_snippet_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:56:\"et_code_snippet_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:37:\"et_code_snippet_type/([^/]+)/embed/?$\";s:53:\"index.php?et_code_snippet_type=$matches[1]&embed=true\";s:49:\"et_code_snippet_type/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?et_code_snippet_type=$matches[1]&paged=$matches[2]\";s:31:\"et_code_snippet_type/([^/]+)/?$\";s:42:\"index.php?et_code_snippet_type=$matches[1]\";s:43:\"et_code_snippet/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"et_code_snippet/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"et_code_snippet/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"et_code_snippet/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"et_code_snippet/([^/]+)/embed/?$\";s:63:\"index.php?post_type=et_code_snippet&name=$matches[1]&embed=true\";s:36:\"et_code_snippet/([^/]+)/trackback/?$\";s:57:\"index.php?post_type=et_code_snippet&name=$matches[1]&tb=1\";s:44:\"et_code_snippet/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&paged=$matches[2]\";s:51:\"et_code_snippet/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&cpage=$matches[2]\";s:40:\"et_code_snippet/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?post_type=et_code_snippet&name=$matches[1]&page=$matches[2]\";s:32:\"et_code_snippet/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"et_code_snippet/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"et_code_snippet/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"et_code_snippet/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_theme_builder/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_theme_builder/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_theme_builder/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_theme_builder/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_theme_builder/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_theme_builder&name=$matches[1]&embed=true\";s:37:\"et_theme_builder/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_builder&name=$matches[1]&tb=1\";s:45:\"et_theme_builder/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&paged=$matches[2]\";s:52:\"et_theme_builder/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_theme_builder/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_builder&name=$matches[1]&page=$matches[2]\";s:33:\"et_theme_builder/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_theme_builder/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_theme_builder/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_theme_builder/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"et_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"et_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"et_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"et_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"et_template/([^/]+)/embed/?$\";s:59:\"index.php?post_type=et_template&name=$matches[1]&embed=true\";s:32:\"et_template/([^/]+)/trackback/?$\";s:53:\"index.php?post_type=et_template&name=$matches[1]&tb=1\";s:40:\"et_template/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&paged=$matches[2]\";s:47:\"et_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&cpage=$matches[2]\";s:36:\"et_template/([^/]+)(?:/([0-9]+))?/?$\";s:65:\"index.php?post_type=et_template&name=$matches[1]&page=$matches[2]\";s:28:\"et_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"et_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"et_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"et_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_header_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_header_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_header_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_header_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_header_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_header_layout&name=$matches[1]&embed=true\";s:37:\"et_header_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_header_layout&name=$matches[1]&tb=1\";s:45:\"et_header_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_header_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_header_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_header_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_header_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_header_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_header_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_header_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"et_body_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"et_body_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"et_body_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"et_body_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"et_body_layout/([^/]+)/embed/?$\";s:62:\"index.php?post_type=et_body_layout&name=$matches[1]&embed=true\";s:35:\"et_body_layout/([^/]+)/trackback/?$\";s:56:\"index.php?post_type=et_body_layout&name=$matches[1]&tb=1\";s:43:\"et_body_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&paged=$matches[2]\";s:50:\"et_body_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&cpage=$matches[2]\";s:39:\"et_body_layout/([^/]+)(?:/([0-9]+))?/?$\";s:68:\"index.php?post_type=et_body_layout&name=$matches[1]&page=$matches[2]\";s:31:\"et_body_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"et_body_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"et_body_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"et_body_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_footer_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_footer_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_footer_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_footer_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_footer_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_footer_layout&name=$matches[1]&embed=true\";s:37:\"et_footer_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_footer_layout&name=$matches[1]&tb=1\";s:45:\"et_footer_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_footer_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_footer_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_footer_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_footer_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_footer_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_footer_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_footer_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=89&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'),(3457,'et_pb_contact_form_5d2379ab2f61b68b8231dbf0805c8eb5','off','yes'),(1759,'brb_previous_version','1.8.6','yes'),(1724,'brb_is_multisite','','yes'),(1725,'brb_active','1','yes'),(1726,'brb_license','KOC47UYM-GWEE45HJ-SE79QL03-HKSV0WWC-GFJK67QX','yes'),(1727,'brb_version','1.8.8','yes'),(1728,'brb_auth_code','SwK02mgoMGJQ5v2pDZF6pBLUxcJv9x5uRsozlzFCoKrLfpl1H9oJ5Lfvk5OIWoHAqCX0volyCMtKK7JbIKmqbCkbAiidw1NqLuYR9N9aNiLXqGcw6xg6bkMpVlKHJtk','yes'),(1389,'wpseo_sitemap_wp_cache_validator','2wC5M','no'),(210,'et_pb_contact_form_0a0bb22adbe237cd5a636af85bc9bcf2','off','yes'),(226,'et_pb_contact_form_b6557ab7273edd5828199f85eb1cb1c8','off','yes'),(124060,'wordfence_version','7.10.3','yes'),(6013,'ithemes-updater-cache','a:14:{s:18:\"timeout-multiplier\";i:1;s:10:\"expiration\";i:1654417885;s:9:\"timestamp\";i:1654292192;s:8:\"packages\";a:0:{}s:14:\"update_plugins\";a:0:{}s:24:\"update_plugins_no_update\";a:1:{s:11:\"backupbuddy\";O:8:\"stdClass\":12:{s:2:\"id\";i:0;s:4:\"slug\";s:1:\".\";s:6:\"plugin\";s:11:\"backupbuddy\";s:11:\"new_version\";b:1;s:3:\"url\";N;s:7:\"package\";s:45:\"ithemes-security-pro/ithemes-security-pro.php\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:13:\"update_themes\";a:0:{}s:23:\"update_themes_no_update\";a:0:{}s:12:\"use_ca_patch\";b:0;s:7:\"use_ssl\";b:1;s:14:\"quick_releases\";b:0;s:16:\"site_url_history\";a:2:{s:32:\"https://capitalbookkeepingco.com\";i:1654374455;s:31:\"http://capitalbookkeepingco.com\";i:1654291755;}s:18:\"timeout-mulitplier\";i:1;s:8:\"site_url\";s:24:\"capitalbookkeepingco.com\";}','no'),(6016,'ithemes-updater-keys','a:0:{}','no'),(124066,'wf_plugin_act_error','','yes'),(1004,'wpseo_ryte','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1654028499;}','yes'),(1006,'wpseo_sitemap_page_cache_validator','27DZ','no'),(1008,'wpseo_sitemap_cache_validator_global','5Ki8L','no'),(1011,'wpseo_sitemap_scope_cache_validator','7fmHq','no'),(1012,'wpseo_sitemap_layout_type_cache_validator','7fmHs','no'),(1013,'wpseo_sitemap_module_width_cache_validator','7fmHu','no'),(1014,'wpseo_sitemap_category_cache_validator','4UNKL','no'),(1740,'brb_renewal_status','','yes'),(1741,'brb_renewal_date','2020-05-30','yes'),(1752,'edd_sl_7477d5243b62b8a311ec3d4ad9b8ab66','a:2:{s:7:\"timeout\";i:1693435105;s:5:\"value\";s:5:\"false\";}','no'),(1115,'wpseo_sitemap_taxonomies_cache_validator','55mBT','no'),(1024,'wpseo_sitemap_project_cache_validator','6pNaX','no'),(1631,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:26:\"info@localmarketingplus.ca\";s:7:\"version\";s:3:\"6.3\";s:9:\"timestamp\";i:1691530128;}','no'),(2516,'et_pb_contact_form_126aa9b4a76d2b176c178100dcbd8f37','off','yes'),(391,'et_pb_contact_form_e8090e6075fd72be375f3a18736b32ac','off','yes'),(310,'et_pb_contact_form_dd93cbc6939ff240b7fc78fbc509fef2','off','yes'),(1084,'wpseo_sitemap_users_cache_validator','2EGj5','no'),(339,'et_pb_contact_form_f7d2246b2d8cae7920f502bbeae01c03','off','yes'),(1717,'wpseo_sitemap_attachment_cache_validator','6lFzT','no'),(980,'wpseo_titles','a:144:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";s:1:\"0\";s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";s:1:\"0\";s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:13:\"title-project\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-project\";s:0:\"\";s:15:\"noindex-project\";b:1;s:26:\"display-metabox-pt-project\";b:0;s:26:\"post_types-project-maintax\";i:0;s:24:\"schema-page-type-project\";s:7:\"WebPage\";s:27:\"schema-article-type-project\";s:4:\"None\";s:20:\"social-title-project\";s:9:\"%%title%%\";s:26:\"social-description-project\";s:0:\"\";s:24:\"social-image-url-project\";s:0:\"\";s:23:\"social-image-id-project\";i:0;s:23:\"title-ptarchive-project\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-project\";s:0:\"\";s:25:\"bctitle-ptarchive-project\";s:0:\"\";s:25:\"noindex-ptarchive-project\";b:0;s:30:\"social-title-ptarchive-project\";s:21:\"%%pt_plural%% Archive\";s:36:\"social-description-ptarchive-project\";s:0:\"\";s:34:\"social-image-url-ptarchive-project\";s:0:\"\";s:33:\"social-image-id-ptarchive-project\";i:0;s:26:\"title-tax-project_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-project_category\";s:0:\"\";s:36:\"display-metabox-tax-project_category\";b:1;s:28:\"noindex-tax-project_category\";b:0;s:33:\"social-title-tax-project_category\";s:23:\"%%term_title%% Archives\";s:39:\"social-description-tax-project_category\";s:0:\"\";s:37:\"social-image-url-tax-project_category\";s:0:\"\";s:36:\"social-image-id-tax-project_category\";i:0;s:34:\"taxonomy-project_category-ptparent\";i:0;s:21:\"title-tax-project_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-project_tag\";s:0:\"\";s:31:\"display-metabox-tax-project_tag\";b:1;s:23:\"noindex-tax-project_tag\";b:0;s:28:\"social-title-tax-project_tag\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-project_tag\";s:0:\"\";s:32:\"social-image-url-tax-project_tag\";s:0:\"\";s:31:\"social-image-id-tax-project_tag\";i:0;s:29:\"taxonomy-project_tag-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:29:\"open_graph_frontpage_image_id\";i:0;s:26:\"taxonomy-category-ptparent\";s:1:\"0\";s:26:\"taxonomy-post_tag-ptparent\";s:1:\"0\";s:29:\"taxonomy-post_format-ptparent\";s:1:\"0\";}','yes'),(981,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";}','yes'),(2072,'et_pb_contact_form_0c774048c4b8dbdc0c7f28bdd9b3408e','off','yes'),(2073,'et_pb_contact_form_4a26ee0b26e7b6cef27e1c7a24e2b143','off','yes'),(2074,'_transient_brb_google_success_accounts/102026661504209332974/locations/3656234503463378443','a:3:{s:4:\"data\";s:2348:\"{\n    \"reviews\": [\n        {\n            \"reviewId\": \"AbFvOqkIt95PIjTu_DuhdjUXxOgrt_tx3Q15J5Sj3v_1jgvx7ALLdHJt6WctuZ1OPGv-95HOS4PY6w\",\n            \"reviewer\": {\n                \"profilePhotoUrl\": \"https://lh3.googleusercontent.com/a/AAcHTtcw5J1jwYCog18Ceq8FVT2FLSTeFCz82t2u2wTUyn3QXg=s120-c-rp-mo-br100\",\n                \"displayName\": \"Doug Noble\"\n            },\n            \"starRating\": \"FIVE\",\n            \"comment\": \"Trena has been helping me with my business bookkeeping for just over 2 years now, recently Cathie has taken over my account, both Trena and Cathie do a fantastic job and I would strongly recommend Capital Bookkeeping for your business needs.  With 2 full tax seasons done, my accountant as said to me on both occasions \\\"you are very fortunate to have such a good bookkeeper.\\\"  Cathie is great, she is prompt with email correspondence, and easy yet professional to deal with.  Dealing with great bookkeepers makes my life so much easier, and tax season that much more enjoyable, haha.\\nThanks girls, and keep up the hard work.\",\n            \"createTime\": \"2022-01-27T15:59:54.643755Z\",\n            \"updateTime\": \"2022-01-27T15:59:54.643755Z\",\n            \"name\": \"accounts/102026661504209332974/locations/3656234503463378443/reviews/AbFvOqkIt95PIjTu_DuhdjUXxOgrt_tx3Q15J5Sj3v_1jgvx7ALLdHJt6WctuZ1OPGv-95HOS4PY6w\"\n        },\n        {\n            \"reviewId\": \"AbFvOqnxv2kHODUrJK_FhCm1TGQXseeAM9BhHQ89yf2F4cVciLDbDzfKIb1A94F9IJVlAR-lJx67\",\n            \"reviewer\": {\n                \"profilePhotoUrl\": \"https://lh3.googleusercontent.com/a/AAcHTtd0gMs1aVIGUNYpfZCE-GJK2S7_q2ZgP0RqvRt2Wpya=s120-c-rp-mo-br100\",\n                \"displayName\": \"Blair Penfound\"\n            },\n            \"starRating\": \"FIVE\",\n            \"comment\": \"Trena and her staff took over my bookkeeping two years ago. They quickly and efficiently cleaned up the mess I gave them.  I am very impressed with there attention to detail and professionalism.  I would not hesitate to recommend their services.\",\n            \"createTime\": \"2022-01-11T00:44:29.068550Z\",\n            \"updateTime\": \"2022-01-11T00:44:29.068550Z\",\n            \"name\": \"accounts/102026661504209332974/locations/3656234503463378443/reviews/AbFvOqnxv2kHODUrJK_FhCm1TGQXseeAM9BhHQ89yf2F4cVciLDbDzfKIb1A94F9IJVlAR-lJx67\"\n        }\n    ],\n    \"averageRating\": 5,\n    \"totalReviewCount\": 2\n}\";s:4:\"code\";i:200;s:7:\"headers\";a:16:{i:0;s:13:\"Server: nginx\";i:1;s:35:\"Date: Mon, 28 Aug 2023 08:37:49 GMT\";i:2;s:45:\"Content-Type: application/json; charset=utf-8\";i:3;s:20:\"Content-Length: 2348\";i:4;s:22:\"Connection: keep-alive\";i:5;s:21:\"Vary: Accept-Encoding\";i:6;s:41:\"ETag: W/\"92c-fVDnR0RBxoDuOz1UX7jOanya1Oo\"\";i:7;s:43:\"Strict-Transport-Security: max-age=15768000\";s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:19:\"Mon, 28 Aug 2023 08\";s:12:\"content-type\";s:31:\"application/json; charset=utf-8\";s:14:\"content-length\";s:4:\"2348\";s:10:\"connection\";s:10:\"keep-alive\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:4:\"etag\";s:35:\"W/\"92c-fVDnR0RBxoDuOz1UX7jOanya1Oo\"\";s:25:\"strict-transport-security\";s:16:\"max-age=15768000\";}}','yes'),(286,'et_pb_contact_form_1363c4cef1209964350c6bb132b48f34','off','yes'),(228,'et_pb_contact_form_00bfe59d2b5c1a46f42a76274543ee34','off','yes'),(229,'et_pb_contact_form_3d3660a2c6df7b22b87a763fc31a48b7','off','yes'),(257,'category_children','a:0:{}','yes'),(1005,'wpseo_sitemap_1_cache_validator','27DV','no'),(978,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"21.0\";}','yes'),(460,'et_pb_contact_form_0cda3f4a1a6190cdee6140cf5cdf197e','off','yes'),(414,'widget_widget_tlp_port_owl_carousel','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2071,'et_pb_contact_form_aad9199647f9b658d81808e3154d6e8a','off','yes'),(2041,'et_pb_contact_form_b0eb5c3f7c9f66b05c9544a7f5009dae','off','yes'),(2053,'et_pb_contact_form_601349b9fc17d259cbc8cfc5db3e8e64','off','yes'),(2054,'et_pb_contact_form_737469c5666c222b054bb3851c8eae8a','off','yes'),(409,'tss_settings','a:4:{s:4:\"slug\";s:11:\"testimonial\";s:5:\"field\";a:6:{i:0;s:11:\"client_name\";i:1;s:11:\"project_url\";i:2;s:14:\"completed_date\";i:3;s:5:\"tools\";i:4;s:10:\"categories\";i:5;s:4:\"tags\";}s:11:\"form_fields\";a:6:{i:0;s:15:\"tss_designation\";i:1;s:11:\"tss_company\";i:2;s:12:\"tss_location\";i:3;s:10:\"tss_rating\";i:4;s:9:\"tss_video\";i:5;s:16:\"tss_social_media\";}s:18:\"notification_email\";s:26:\"info@localmarketingplus.ca\";}','yes'),(395,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1733,'widget_brb_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1734,'brb_license_status','1','yes'),(1735,'brb_license_expired','1653871986477','yes'),(1736,'brb_latest_version','1.9.27','yes'),(499,'et_pb_contact_form_a81f068ac651d466a5841ec18a18b6f5','off','yes'),(431,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(432,'widget_recent-posts','a:3:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:3;s:9:\"show_date\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(1032,'wpseo_sitemap_post_cache_validator','6I64L','no'),(1035,'wpseo_sitemap_author_cache_validator','6EQgn','no'),(3838,'db_upgraded','','yes'),(132804,'user_count','4','no'),(124061,'wordfence_case','1','yes'),(124062,'wordfence_installed','1','yes'),(124065,'wordfenceActivated','1','yes'),(6031,'itsec_remote_messages','a:3:{s:8:\"response\";a:4:{s:3:\"ttl\";i:43200;s:8:\"messages\";a:0:{}s:8:\"features\";a:2:{s:12:\"site_scanner\";a:3:{s:4:\"rate\";i:10;s:8:\"disabled\";b:1;s:12:\"requirements\";a:0:{}}s:15:\"site_scanner_p1\";a:3:{s:4:\"rate\";i:90;s:8:\"disabled\";b:0;s:12:\"requirements\";a:0:{}}}s:7:\"actions\";a:0:{}}s:3:\"ttl\";i:43200;s:9:\"requested\";i:1654292620;}','no'),(9921,'gtm4wp-options','a:78:{s:8:\"gtm-code\";s:11:\"GTM-T69WVGV\";s:27:\"gtm-datalayer-variable-name\";s:0:\"\";s:18:\"gtm-code-placement\";i:0;s:16:\"gtm-env-gtm-auth\";s:0:\"\";s:19:\"gtm-env-gtm-preview\";s:0:\"\";s:24:\"gtm-browser-do-not-track\";b:0;s:18:\"gtm-load-gtm-early\";b:0;s:15:\"gtm-domain-name\";s:0:\"\";s:19:\"include-remarketing\";b:0;s:16:\"include-loggedin\";b:0;s:16:\"include-userrole\";b:0;s:14:\"include-userid\";b:0;s:17:\"include-useremail\";b:0;s:19:\"include-userregdate\";b:0;s:16:\"include-username\";b:0;s:18:\"include-visitor-ip\";b:0;s:16:\"include-posttype\";b:1;s:18:\"include-categories\";b:1;s:12:\"include-tags\";b:1;s:14:\"include-author\";b:1;s:16:\"include-authorid\";b:0;s:16:\"include-postdate\";b:0;s:17:\"include-posttitle\";b:0;s:17:\"include-postcount\";b:0;s:14:\"include-postid\";b:0;s:18:\"include-postformat\";b:0;s:17:\"include-postterms\";b:0;s:18:\"include-searchdata\";b:0;s:19:\"include-browserdata\";b:0;s:14:\"include-osdata\";b:0;s:18:\"include-devicedata\";b:0;s:15:\"include-miscgeo\";b:0;s:10:\"geo-apikey\";s:0:\"\";s:26:\"include-miscgeo-cloudflare\";b:0;s:15:\"include-weather\";b:0;s:20:\"weather-weatherunits\";i:0;s:29:\"weather-openweathermap-apikey\";s:0:\"\";s:14:\"include-siteid\";b:0;s:16:\"include-sitename\";b:0;s:15:\"event-form-move\";b:0;s:27:\"event-new-user-registration\";b:0;s:20:\"event-user-logged-in\";b:0;s:13:\"event-youtube\";b:0;s:11:\"event-vimeo\";b:0;s:16:\"event-soundcloud\";b:0;s:16:\"scroller-enabled\";b:0;s:19:\"scroller-debug-mode\";b:0;s:22:\"scroller-callback-time\";i:100;s:17:\"scroller-distance\";i:150;s:18:\"scroller-contentid\";s:7:\"content\";s:19:\"scroller-readertime\";i:60;s:16:\"blacklist-enable\";i:0;s:19:\"blacklist-sandboxed\";b:0;s:16:\"blacklist-status\";s:0:\"\";s:15:\"integrate-wpcf7\";b:0;s:45:\"integrate-woocommerce-track-classic-ecommerce\";b:0;s:46:\"integrate-woocommerce-track-enhanced-ecommerce\";b:0;s:44:\"integrate-woocommerce-product-per-impression\";i:0;s:40:\"integrate-woocommerce-cart-as-first-step\";b:0;s:47:\"integrate-woocommerce-cart-content-in-datalayer\";b:0;s:36:\"integrate-woocommerce-brand-taxonomy\";s:0:\"\";s:33:\"integrate-woocommerce-remarketing\";b:0;s:39:\"integrate-woocommerce-business-vertical\";s:6:\"retail\";s:40:\"integrate-woocommerce-remarketing-usesku\";b:0;s:44:\"integrate-woocommerce-use-full-category-path\";b:0;s:49:\"integrate-woocommerce-remarketing-productidprefix\";s:0:\"\";s:35:\"integrate-woocommerce-customer-data\";b:0;s:32:\"integrate-woocommerce-order-data\";b:0;s:35:\"integrate-woocommerce-order-max-age\";i:30;s:33:\"integrate-woocommerce-exclude-tax\";b:0;s:38:\"integrate-woocommerce-exclude-shipping\";b:0;s:51:\"integrate-woocommerce-do-not-use-order-tracked-flag\";b:0;s:32:\"integrate-google-optimize-idlist\";s:0:\"\";s:33:\"integrate-google-optimize-timeout\";i:4000;s:23:\"integrate-wp-e-commerce\";b:0;s:16:\"integrate-amp-id\";s:0:\"\";s:19:\"integrate-cookiebot\";b:0;i:0;s:0:\"\";}','yes'),(124097,'wordfence_syncingAttackData','0','no'),(124083,'wfls_last_role_change','1689198205','no'),(124096,'wordfence_syncAttackDataAttempts','0','no'),(206452,'et_pb_contact_form_67f27faa6cbc2ddbb19bc36d9c2c0aa4','off','yes'),(206453,'et_pb_contact_form_d99e9d01b45377e3de78d730d54a6677','off','yes'),(206454,'et_pb_contact_form_941ad0e6b2c6e8ac94b6a6bce5cec410','off','yes'),(124098,'wordfence_lastSyncAttackData','1693410424','no'),(124042,'_transient_et_updated_plugins_data','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1693424302;}','yes'),(124059,'wordfence_ls_version','1.1.4','yes'),(18902,'WPLANG','','yes'),(24814,'et_pb_contact_form_26167e875ace4f8622f7ba1c2a6ae2e6','off','yes'),(206554,'_et_builder_da_feature_cache','a:2:{i:0;s:39:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\"}\";i:1;a:2:{s:8:\"notfound\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:13:{i:0;s:13:\"et_pb_section\";i:1;s:12:\"et_pb_column\";i:2;s:11:\"et_pb_image\";i:3;s:15:\"et_pb_row_inner\";i:4;s:18:\"et_pb_column_inner\";i:5;s:11:\"et_pb_blurb\";i:6;s:10:\"et_pb_menu\";i:7;s:10:\"et_pb_text\";i:8;s:18:\"et_pb_contact_form\";i:9;s:19:\"et_pb_contact_field\";i:10;s:13:\"et_pb_sidebar\";i:11;s:25:\"et_pb_social_media_follow\";i:12;s:33:\"et_pb_social_media_follow_network\";}s:29:\"_et_dynamic_cached_attributes\";a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:9:\"font_icon\";a:4:{i:0;s:17:\"&#xf879;||fa||900\";i:1;s:19:\"&#xe06b;||divi||400\";i:2;s:17:\"&#xf2a0;||fa||900\";i:3;s:17:\"&#xf017;||fa||900\";}s:14:\"social_network\";a:1:{i:0;s:8:\"facebook\";}}}s:0:\"\";a:1:{s:29:\"_et_dynamic_cached_attributes\";a:0:{}}}}','yes'),(207079,'_transient_timeout_yst_sm_1_1:5Ki8L_27DV','1693506203','no'),(207080,'_transient_yst_sm_1_1:5Ki8L_27DV','O:24:\"WPSEO_Sitemap_Cache_Data\":2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:215:\"<sitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<sitemap>\n		<loc>https://capitalbookkeepingco.com/page-sitemap.xml</loc>\n		<lastmod>2023-08-30T00:04:11+00:00</lastmod>\n	</sitemap>\n</sitemapindex>\";}','no'),(207087,'_et_builder_gf_feature_cache','a:2:{i:0;s:75:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"enable_all_character_sets\":\"false\"}\";i:1;a:2:{s:155:\"https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,latin-ext&display=swap\";a:1:{s:12:\"google-fonts\";s:7912:\"/* Original: https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVc.ttf) format(\'truetype\');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVQ.woff) format(\'woff\');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVI.woff2) format(\'woff2\');}\";}s:308:\"https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic|Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic&subset=latin,latin-ext&display=swap\";a:1:{s:12:\"google-fonts\";s:21119:\"/* Original: https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic|Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8WXZ0ow.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9WXZ0ow.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9WXZ0ow.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9WXZ0ow.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9WXZ0ow.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6WXZ0ow.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6WXZ0ow.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6WXZ0ow.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXZ0ow.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Xw3aX8.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Hw3aX8.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw3aX8.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aX8.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aX8.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w3aX8.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w3aX8.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr73w3aX8.ttf) format(\'truetype\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w3aX8.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVc.ttf) format(\'truetype\');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8WXZ0oA.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9WXZ0oA.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9WXZ0oA.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9WXZ0oA.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9WXZ0oA.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6WXZ0oA.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6WXZ0oA.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6WXZ0oA.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXZ0oA.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Xw3aXw.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Hw3aXw.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw3aXw.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXw.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aXw.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w3aXw.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w3aXw.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr73w3aXw.woff) format(\'woff\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w3aXw.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVQ.woff) format(\'woff\');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8WXZ0pg.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9WXZ0pg.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9WXZ0pg.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9WXZ0pg.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9WXZ0pg.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6WXZ0pg.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6WXZ0pg.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6WXZ0pg.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXZ0pg.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Xw3aXo.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Hw3aXo.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw3aXo.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXo.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aXo.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w3aXo.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w3aXo.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr73w3aXo.woff2) format(\'woff2\');}@font-face {font-family: \'Montserrat\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w3aXo.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVI.woff2) format(\'woff2\');}\";}}}','yes'),(206320,'et_pb_contact_form_9d7c2671f6a9eeb65853e795d682b4ee','off','yes'),(206321,'_transient_timeout_wpseo_total_unindexed_posts','1693418986','no'),(206322,'_transient_wpseo_total_unindexed_posts','0','no'),(206427,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:18:\"post-smtp/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"2.5.10\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1693336605;s:11:\"plugin_path\";s:26:\"post-smtp/postman-smtp.php\";}}s:7:\"abspath\";s:43:\"/home/localmarket/capitalbookkeepingco.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:26:\"post-smtp/postman-smtp.php\";s:8:\"sdk_path\";s:18:\"post-smtp/freemius\";s:7:\"version\";s:6:\"2.5.10\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1693336605;}}','yes'),(206428,'fs_debug_mode','','yes'),(206429,'fs_accounts','a:7:{s:21:\"id_slug_type_path_map\";a:1:{i:10461;a:3:{s:4:\"slug\";s:9:\"post-smtp\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:26:\"post-smtp/postman-smtp.php\";}}s:11:\"plugin_data\";a:1:{s:9:\"post-smtp\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:26:\"post-smtp/postman-smtp.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1693336605;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:6:\"2.5.10\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:7:\"2.5.9.4\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";N;s:4:\"host\";s:24:\"capitalbookkeepingco.com\";s:9:\"server_ip\";s:14:\"199.250.215.77\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1693336605;s:7:\"version\";s:7:\"2.5.9.4\";}s:15:\"prev_is_premium\";b:0;s:21:\"is_pending_activation\";b:1;}}s:13:\"file_slug_map\";a:1:{s:26:\"post-smtp/postman-smtp.php\";s:9:\"post-smtp\";}s:7:\"plugins\";a:1:{s:9:\"post-smtp\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:9:\"Post SMTP\";s:4:\"slug\";s:9:\"post-smtp\";s:12:\"premium_slug\";s:17:\"post-smtp-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:26:\"post-smtp/postman-smtp.php\";s:7:\"version\";s:7:\"2.5.9.4\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";s:5:\"10910\";s:17:\"bundle_public_key\";s:32:\"pk_c5110ef04ba30cd57dd970a269a1a\";s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_28fcefa3d0ae86f8cdf6b7f71c0cc\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"10461\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"813f449575b96ed2b56d83d02f6eaa8a\";s:13:\"admin_notices\";a:1:{s:9:\"post-smtp\";a:1:{s:18:\"activation_pending\";a:10:{s:7:\"message\";s:190:\"You should receive a confirmation email for <b>Post SMTP</b> to your mailbox at <b>info@localmarketingplus.ca</b>. Please make sure you click the button in that email to complete the opt-in.\";s:5:\"title\";s:7:\"Thanks!\";s:4:\"type\";s:7:\"success\";s:6:\"sticky\";b:1;s:2:\"id\";s:18:\"activation_pending\";s:10:\"manager_id\";s:9:\"post-smtp\";s:6:\"plugin\";s:9:\"Post SMTP\";s:10:\"wp_user_id\";N;s:11:\"dismissible\";b:1;s:4:\"data\";a:0:{}}}}s:6:\"addons\";a:1:{i:10461;a:8:{i:0;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:5:\"title\";s:15:\"Office365 Addon\";s:4:\"slug\";s:29:\"post-smtp-extension-office365\";s:12:\"premium_slug\";s:37:\"post-smtp-extension-office365-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:6;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"10462\";s:11:\"description\";s:293:\"<p>\nOffice 365 Pro extension gives you the power to connect Post SMTP with your Outlook and Microsoft 365 accounts to improve email deliverability for your WordPress site. The extension comes equipped with advanced features like email logs, OAuth 2.0 protocol, fallback mailing, and more.\n</p>\";s:17:\"short_description\";s:134:\"Office 365 Pro extension allows you to connect Post SMTP with your Outlook and Microsoft 365 accounts to improve email deliverability.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10462/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10462/card_banner.png\";s:15:\"selling_point_0\";s:86:\"Office365 API Integration - Easily integrate your favorite SMTP Mailer with Post SMTP.\";s:15:\"selling_point_1\";s:83:\"Safe & Secure - No need to add your username or password in the WordPress database.\";s:15:\"selling_point_2\";s:115:\"Easy Setup - Post SMTP’s easy-to-use interface and simple user experience are perfect for any WordPress beginner.\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"2894\";s:7:\"updated\";s:19:\"2022-06-30 10:42:56\";s:7:\"created\";s:19:\"2022-06-29 12:53:19\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_da92a587a7f58757bab54cdcd8a07\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"10462\";s:7:\"updated\";s:19:\"2023-08-29 21:52:52\";s:7:\"created\";s:19:\"2022-06-02 07:32:42\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:1;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:5:\"title\";s:16:\"Amazon SES Addon\";s:4:\"slug\";s:30:\"post-smtp-extension-amazon-ses\";s:12:\"premium_slug\";s:38:\"post-smtp-extension-amazon-ses-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:3;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"10497\";s:11:\"description\";s:307:\"<p>\nAmazon SES Pro Extension combines Amazon’s mail service provider with PostSMTP’s powerful and easy-to-use SMTP mailing features. The extension comes equipped with advanced features like email logs, OAuth 2.0 protocol, fallback mailing, and more.\n</p>\n<p>\nIt requires PHP 7.1 or greater version.\n</p>\";s:17:\"short_description\";s:133:\"Amazon SES Pro Extension combines Amazon’s mail service provider with Post SMTP’s powerful and easy-to-use SMTP mailing features.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10497/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10497/card_banner.png\";s:15:\"selling_point_0\";s:87:\"Amazon SES API Integration - Easily integrate your favorite SMTP Mailer with Post SMTP.\";s:15:\"selling_point_1\";s:83:\"Safe & Secure - No need to add your username or password in the WordPress database.\";s:15:\"selling_point_2\";s:114:\"Easy Setup - PostSMTP’s easy-to-use interface and simple user experience are perfect for any WordPress beginner.\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"2892\";s:7:\"updated\";s:19:\"2022-07-19 13:05:19\";s:7:\"created\";s:19:\"2022-06-29 11:32:49\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_008e8b052de96e4199d081a32af7f\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"10497\";s:7:\"updated\";s:19:\"2023-08-29 16:59:37\";s:7:\"created\";s:19:\"2022-06-14 09:32:08\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:2;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:5:\"title\";s:20:\"Twilio Notifications\";s:4:\"slug\";s:39:\"twilio-notifications-postsmtp-extension\";s:12:\"premium_slug\";s:47:\"twilio-notifications-postsmtp-extension-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"10625\";s:11:\"description\";s:136:\"<p>\nTwilio Pro Extension allows you to add your phone number so that you can receive SMS notifications and alerts when email fails.\n</p>\";s:17:\"short_description\";s:127:\"Twilio Pro Extension allows you to add your phone number so that you can receive SMS notifications and alerts when email fails.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10625/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10625/card_banner.png\";s:15:\"selling_point_0\";s:104:\"Failure Alerts - Failure alerts from Twilio that lets you know emails were not delivered to a recipient.\";s:15:\"selling_point_1\";s:103:\"SMS Notification - The administrator can add their phone number to receive SMS alerts on email failure.\";s:15:\"selling_point_2\";s:115:\"Easy Setup - Post SMTP’s easy-to-use interface and simple user experience are perfect for any WordPress beginner.\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"2947\";s:7:\"updated\";s:19:\"2022-08-01 13:44:09\";s:7:\"created\";s:19:\"2022-07-21 13:42:22\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_f03ac99f5750e7b038a7173a5ff3e\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"10625\";s:7:\"updated\";s:19:\"2023-08-23 11:36:24\";s:7:\"created\";s:19:\"2022-07-05 09:00:33\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:3;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:5:\"title\";s:12:\"Mail Control\";s:4:\"slug\";s:22:\"post-smtp-mail-control\";s:12:\"premium_slug\";s:30:\"post-smtp-mail-control-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:2;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"10805\";s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10805/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10805/card_banner.png\";s:15:\"selling_point_0\";N;s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3025\";s:7:\"updated\";s:19:\"2023-05-02 10:08:21\";s:7:\"created\";s:19:\"2022-08-31 06:53:22\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_de65d9aef41e289b409cad29c3d4d\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"10805\";s:7:\"updated\";s:19:\"2023-08-28 14:23:47\";s:7:\"created\";s:19:\"2022-08-03 10:32:44\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:4;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:5:\"title\";s:10:\"Zoho Addon\";s:4:\"slug\";s:4:\"zoho\";s:12:\"premium_slug\";s:12:\"zoho-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"11667\";s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/11667/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/11667/card_banner.png\";s:15:\"selling_point_0\";s:81:\"Zoho API Integration - Easily integrate your favorite SMTP Mailer with Post SMTP.\";s:15:\"selling_point_1\";s:83:\"Safe & Secure - No need to add your username or password in the WordPress database.\";s:15:\"selling_point_2\";s:115:\"Easy Setup - Post SMTP’s easy-to-use interface and simple user experience are perfect for any WordPress beginner.\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3260\";s:7:\"updated\";s:19:\"2023-05-02 10:11:24\";s:7:\"created\";s:19:\"2022-12-22 12:13:05\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_96d03527bd86ed23904bba16e3d85\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"11667\";s:7:\"updated\";s:19:\"2023-08-24 17:35:27\";s:7:\"created\";s:19:\"2022-12-22 12:09:33\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:5;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:5:\"title\";s:25:\"Report and Tracking Addon\";s:4:\"slug\";s:25:\"report-and-tracking-addon\";s:12:\"premium_slug\";s:33:\"report-and-tracking-addon-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:1;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"12391\";s:11:\"description\";s:441:\"With the Report and Tracking Pro Extension, you can receive in-depth reports and statistics on your website\'s email performance. You have the option to filter email statistics by day, week, or month, and track who has viewed your emails. Additionally, you can view your email\'s open rate. The addon even sends you email reports on a daily, weekly, or monthly basis, straight to your inbox, so you can stay informed on your email performance.\";s:17:\"short_description\";s:138:\"Receive in-depth reports and statistics of your website\'s email performance. and, get access to email\'s open rate and get more visibility.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/card_banner.png\";s:15:\"selling_point_0\";s:47:\"Get email delivery reports right in your inbox.\";s:15:\"selling_point_1\";s:73:\"Track the rate of opened emails to those that are still awaiting viewing.\";s:15:\"selling_point_2\";s:86:\"Access to email delivery graphical view, with options to filter for specific intervals\";s:11:\"screenshots\";O:8:\"stdClass\":4:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/screenshots/0.png\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/screenshots/1.png\";s:12:\"screenshot_2\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/screenshots/2.png\";s:12:\"screenshot_3\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/screenshots/3.png\";}s:2:\"id\";s:4:\"3492\";s:7:\"updated\";s:19:\"2023-05-02 11:06:56\";s:7:\"created\";s:19:\"2023-05-02 10:10:34\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_9ce9a2809284f26ff61f1519b4b19\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"12391\";s:7:\"updated\";s:19:\"2023-08-28 14:27:11\";s:7:\"created\";s:19:\"2023-04-05 03:13:00\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:6;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:5:\"title\";s:31:\"Advance Email Delivery and Logs\";s:4:\"slug\";s:31:\"advance-email-delivery-and-logs\";s:12:\"premium_slug\";s:39:\"advance-email-delivery-and-logs-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:3;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"12992\";s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12992/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12992/card_banner.png\";s:15:\"selling_point_0\";N;s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3599\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2023-06-27 07:16:35\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_6029aeb6f646d50d272a109a114bb\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"12992\";s:7:\"updated\";s:19:\"2023-08-28 01:35:31\";s:7:\"created\";s:19:\"2023-06-21 08:03:18\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:7;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:5:\"title\";s:18:\"Attachment Support\";s:4:\"slug\";s:18:\"attachment-support\";s:12:\"premium_slug\";s:26:\"attachment-support-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:2;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"13141\";s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/13141/banner.jpg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/13141/card_banner.jpg\";s:15:\"selling_point_0\";N;s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3639\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2023-07-18 11:17:30\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_60d07f2229da6323270c237ab50cc\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"13141\";s:7:\"updated\";s:19:\"2023-08-25 09:30:45\";s:7:\"created\";s:19:\"2023-07-12 07:34:48\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}}}','yes'),(206325,'et_pb_contact_form_99acab7ebdb05211ff05183971524317','off','yes'),(206728,'et_pb_contact_form_5a7f120723fe9bb842ff311bc58d624a','off','yes'),(205117,'layout_category_children','a:0:{}','yes'),(206430,'postman_db_version','1.0.1','yes'),(206431,'postman_options','a:46:{s:8:\"enc_type\";s:4:\"none\";s:8:\"hostname\";s:0:\"\";s:12:\"sender_email\";s:0:\"\";s:15:\"envelope_sender\";s:0:\"\";s:14:\"transport_type\";s:7:\"default\";s:12:\"smtp_mailers\";s:8:\"postsmtp\";s:9:\"auth_type\";s:4:\"none\";s:11:\"sender_name\";s:0:\"\";s:15:\"oauth_client_id\";s:0:\"\";s:19:\"oauth_client_secret\";s:0:\"\";s:19:\"basic_auth_username\";s:0:\"\";s:19:\"basic_auth_password\";s:0:\"\";s:16:\"mandrill_api_key\";s:0:\"\";s:16:\"sendgrid_api_key\";s:0:\"\";s:18:\"sendinblue_api_key\";s:0:\"\";s:16:\"postmark_api_key\";s:0:\"\";s:17:\"sparkpost_api_key\";s:0:\"\";s:15:\"mailgun_api_key\";s:0:\"\";s:19:\"mailgun_domain_name\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:24:\"disable_email_validation\";s:2:\"on\";s:9:\"forced_to\";s:0:\"\";s:9:\"forced_cc\";s:0:\"\";s:10:\"forced_bcc\";s:0:\"\";s:7:\"headers\";s:0:\"\";s:12:\"read_timeout\";i:60;s:18:\"connection_timeout\";i:10;s:9:\"log_level\";i:40000;s:16:\"mail_log_enabled\";s:4:\"true\";s:20:\"mail_log_max_entries\";i:250;s:8:\"run_mode\";s:10:\"production\";s:15:\"transcript_size\";i:128;s:7:\"tmp_dir\";s:4:\"/tmp\";s:21:\"fallback_smtp_enabled\";s:2:\"no\";s:22:\"fallback_smtp_hostname\";s:0:\"\";s:18:\"fallback_smtp_port\";i:0;s:22:\"fallback_smtp_security\";s:4:\"none\";s:19:\"fallback_from_email\";s:0:\"\";s:22:\"fallback_smtp_username\";s:0:\"\";s:22:\"fallback_smtp_password\";s:0:\"\";s:20:\"notification_service\";s:7:\"default\";s:13:\"pushover_user\";s:0:\"\";s:14:\"pushover_token\";s:0:\"\";s:11:\"slack_token\";s:0:\"\";s:23:\"notification_chrome_uid\";s:0:\"\";s:18:\"notification_email\";s:29:\"info@capitalbookkeepingco.com\";}','yes'),(206432,'postman_state','a:4:{s:12:\"install_date\";i:1693336605;s:7:\"version\";s:7:\"2.5.9.4\";s:15:\"locking_enabled\";b:1;s:22:\"delivery_success_total\";i:30;}','yes'),(206433,'fs_api_cache','a:2:{s:56:\"get:/v1/plugins/10461/addons.json?enriched=true&count=50\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:7:\"plugins\";a:8:{i:0;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:12:\"developer_id\";s:3:\"282\";s:8:\"store_id\";s:4:\"5344\";s:10:\"install_id\";s:7:\"9698453\";s:4:\"slug\";s:29:\"post-smtp-extension-office365\";s:5:\"title\";s:15:\"Office365 Addon\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10462/icons/f2abe4833241787621c8a188572dcbbe.png\";s:15:\"default_plan_id\";s:5:\"17716\";s:5:\"plans\";s:17:\"17716,17971,17972\";s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:6;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_da92a587a7f58757bab54cdcd8a07\";s:2:\"id\";s:5:\"10462\";s:7:\"created\";s:19:\"2022-06-02 07:32:42\";s:7:\"updated\";s:19:\"2023-08-29 21:52:52\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"10462\";s:3:\"url\";N;s:11:\"description\";s:293:\"<p>\nOffice 365 Pro extension gives you the power to connect Post SMTP with your Outlook and Microsoft 365 accounts to improve email deliverability for your WordPress site. The extension comes equipped with advanced features like email logs, OAuth 2.0 protocol, fallback mailing, and more.\n</p>\";s:17:\"short_description\";s:134:\"Office 365 Pro extension allows you to connect Post SMTP with your Outlook and Microsoft 365 accounts to improve email deliverability.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10462/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10462/card_banner.png\";s:15:\"selling_point_0\";s:86:\"Office365 API Integration - Easily integrate your favorite SMTP Mailer with Post SMTP.\";s:15:\"selling_point_1\";s:83:\"Safe & Secure - No need to add your username or password in the WordPress database.\";s:15:\"selling_point_2\";s:115:\"Easy Setup - Post SMTP’s easy-to-use interface and simple user experience are perfect for any WordPress beginner.\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"2894\";s:7:\"created\";s:19:\"2022-06-29 12:53:19\";s:7:\"updated\";s:19:\"2022-06-30 10:42:56\";}s:12:\"premium_slug\";s:37:\"post-smtp-extension-office365-premium\";}i:1;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:12:\"developer_id\";s:3:\"282\";s:8:\"store_id\";s:4:\"5344\";s:10:\"install_id\";s:7:\"9767170\";s:4:\"slug\";s:30:\"post-smtp-extension-amazon-ses\";s:5:\"title\";s:16:\"Amazon SES Addon\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10497/icons/06bd22bd2e133c9625603119a0b4c5da.png\";s:15:\"default_plan_id\";s:5:\"17741\";s:5:\"plans\";s:17:\"17741,17967,17968\";s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:3;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_008e8b052de96e4199d081a32af7f\";s:2:\"id\";s:5:\"10497\";s:7:\"created\";s:19:\"2022-06-14 09:32:08\";s:7:\"updated\";s:19:\"2023-08-29 16:59:37\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"10497\";s:3:\"url\";N;s:11:\"description\";s:307:\"<p>\nAmazon SES Pro Extension combines Amazon’s mail service provider with PostSMTP’s powerful and easy-to-use SMTP mailing features. The extension comes equipped with advanced features like email logs, OAuth 2.0 protocol, fallback mailing, and more.\n</p>\n<p>\nIt requires PHP 7.1 or greater version.\n</p>\";s:17:\"short_description\";s:133:\"Amazon SES Pro Extension combines Amazon’s mail service provider with Post SMTP’s powerful and easy-to-use SMTP mailing features.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10497/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10497/card_banner.png\";s:15:\"selling_point_0\";s:87:\"Amazon SES API Integration - Easily integrate your favorite SMTP Mailer with Post SMTP.\";s:15:\"selling_point_1\";s:83:\"Safe & Secure - No need to add your username or password in the WordPress database.\";s:15:\"selling_point_2\";s:114:\"Easy Setup - PostSMTP’s easy-to-use interface and simple user experience are perfect for any WordPress beginner.\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"2892\";s:7:\"created\";s:19:\"2022-06-29 11:32:49\";s:7:\"updated\";s:19:\"2022-07-19 13:05:19\";}s:12:\"premium_slug\";s:38:\"post-smtp-extension-amazon-ses-premium\";}i:2;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:12:\"developer_id\";s:3:\"282\";s:8:\"store_id\";s:4:\"5344\";s:10:\"install_id\";s:7:\"9888238\";s:4:\"slug\";s:39:\"twilio-notifications-postsmtp-extension\";s:5:\"title\";s:20:\"Twilio Notifications\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10625/icons/b0c89deb5f0fa2bb7c366a23a8853e25.png\";s:15:\"default_plan_id\";s:5:\"17997\";s:5:\"plans\";s:23:\"17997,17998,18095,18096\";s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:1;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_f03ac99f5750e7b038a7173a5ff3e\";s:2:\"id\";s:5:\"10625\";s:7:\"created\";s:19:\"2022-07-05 09:00:33\";s:7:\"updated\";s:19:\"2023-08-23 11:36:24\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"10625\";s:3:\"url\";N;s:11:\"description\";s:136:\"<p>\nTwilio Pro Extension allows you to add your phone number so that you can receive SMS notifications and alerts when email fails.\n</p>\";s:17:\"short_description\";s:127:\"Twilio Pro Extension allows you to add your phone number so that you can receive SMS notifications and alerts when email fails.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10625/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10625/card_banner.png\";s:15:\"selling_point_0\";s:104:\"Failure Alerts - Failure alerts from Twilio that lets you know emails were not delivered to a recipient.\";s:15:\"selling_point_1\";s:103:\"SMS Notification - The administrator can add their phone number to receive SMS alerts on email failure.\";s:15:\"selling_point_2\";s:115:\"Easy Setup - Post SMTP’s easy-to-use interface and simple user experience are perfect for any WordPress beginner.\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"2947\";s:7:\"created\";s:19:\"2022-07-21 13:42:22\";s:7:\"updated\";s:19:\"2022-08-01 13:44:09\";}s:12:\"premium_slug\";s:47:\"twilio-notifications-postsmtp-extension-premium\";}i:3;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:12:\"developer_id\";s:3:\"282\";s:8:\"store_id\";s:4:\"5344\";s:10:\"install_id\";s:8:\"10060862\";s:4:\"slug\";s:22:\"post-smtp-mail-control\";s:5:\"title\";s:12:\"Mail Control\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10805/icons/07eeb7ff3952cc8b01672b0aeff7783d.png\";s:15:\"default_plan_id\";s:5:\"18304\";s:5:\"plans\";s:17:\"18304,18440,18441\";s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:2;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_de65d9aef41e289b409cad29c3d4d\";s:2:\"id\";s:5:\"10805\";s:7:\"created\";s:19:\"2022-08-03 10:32:44\";s:7:\"updated\";s:19:\"2023-08-28 14:23:47\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"10805\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10805/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/10805/card_banner.png\";s:15:\"selling_point_0\";N;s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3025\";s:7:\"created\";s:19:\"2022-08-31 06:53:22\";s:7:\"updated\";s:19:\"2023-05-02 10:08:21\";}s:12:\"premium_slug\";s:30:\"post-smtp-mail-control-premium\";}i:4;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:12:\"developer_id\";s:3:\"282\";s:8:\"store_id\";s:4:\"5344\";s:10:\"install_id\";s:8:\"10939530\";s:4:\"slug\";s:4:\"zoho\";s:5:\"title\";s:10:\"Zoho Addon\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/11667/icons/1aed8f0301ebb1f1bebb9a85ac22ea83.png\";s:15:\"default_plan_id\";s:5:\"19907\";s:5:\"plans\";i:19907;s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_96d03527bd86ed23904bba16e3d85\";s:2:\"id\";s:5:\"11667\";s:7:\"created\";s:19:\"2022-12-22 12:09:33\";s:7:\"updated\";s:19:\"2023-08-24 17:35:27\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"11667\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/11667/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/11667/card_banner.png\";s:15:\"selling_point_0\";s:81:\"Zoho API Integration - Easily integrate your favorite SMTP Mailer with Post SMTP.\";s:15:\"selling_point_1\";s:83:\"Safe & Secure - No need to add your username or password in the WordPress database.\";s:15:\"selling_point_2\";s:115:\"Easy Setup - Post SMTP’s easy-to-use interface and simple user experience are perfect for any WordPress beginner.\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3260\";s:7:\"created\";s:19:\"2022-12-22 12:13:05\";s:7:\"updated\";s:19:\"2023-05-02 10:11:24\";}s:12:\"premium_slug\";s:12:\"zoho-premium\";}i:5;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:12:\"developer_id\";s:3:\"282\";s:8:\"store_id\";s:4:\"5344\";s:10:\"install_id\";s:8:\"11795917\";s:4:\"slug\";s:25:\"report-and-tracking-addon\";s:5:\"title\";s:25:\"Report and Tracking Addon\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/icons/3e1e72f22489dc4786debd45a42fa680.png\";s:15:\"default_plan_id\";s:5:\"20995\";s:5:\"plans\";i:20995;s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:1;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_9ce9a2809284f26ff61f1519b4b19\";s:2:\"id\";s:5:\"12391\";s:7:\"created\";s:19:\"2023-04-05 03:13:00\";s:7:\"updated\";s:19:\"2023-08-28 14:27:11\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"12391\";s:3:\"url\";N;s:11:\"description\";s:441:\"With the Report and Tracking Pro Extension, you can receive in-depth reports and statistics on your website\'s email performance. You have the option to filter email statistics by day, week, or month, and track who has viewed your emails. Additionally, you can view your email\'s open rate. The addon even sends you email reports on a daily, weekly, or monthly basis, straight to your inbox, so you can stay informed on your email performance.\";s:17:\"short_description\";s:138:\"Receive in-depth reports and statistics of your website\'s email performance. and, get access to email\'s open rate and get more visibility.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/card_banner.png\";s:15:\"selling_point_0\";s:47:\"Get email delivery reports right in your inbox.\";s:15:\"selling_point_1\";s:73:\"Track the rate of opened emails to those that are still awaiting viewing.\";s:15:\"selling_point_2\";s:86:\"Access to email delivery graphical view, with options to filter for specific intervals\";s:11:\"screenshots\";O:8:\"stdClass\":4:{s:12:\"screenshot_0\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/screenshots/0.png\";s:12:\"screenshot_1\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/screenshots/1.png\";s:12:\"screenshot_2\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/screenshots/2.png\";s:12:\"screenshot_3\";s:75:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12391/screenshots/3.png\";}s:2:\"id\";s:4:\"3492\";s:7:\"created\";s:19:\"2023-05-02 10:10:34\";s:7:\"updated\";s:19:\"2023-05-02 11:06:56\";}s:12:\"premium_slug\";s:33:\"report-and-tracking-addon-premium\";}i:6;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:12:\"developer_id\";s:3:\"282\";s:8:\"store_id\";s:4:\"5344\";s:10:\"install_id\";s:8:\"12421488\";s:4:\"slug\";s:31:\"advance-email-delivery-and-logs\";s:5:\"title\";s:31:\"Advance Email Delivery and Logs\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12992/icons/e2597c8281873a5f1a68ec00ed89cdea.png\";s:15:\"default_plan_id\";s:5:\"21849\";s:5:\"plans\";i:21849;s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:3;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_6029aeb6f646d50d272a109a114bb\";s:2:\"id\";s:5:\"12992\";s:7:\"created\";s:19:\"2023-06-21 08:03:18\";s:7:\"updated\";s:19:\"2023-08-28 01:35:31\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"12992\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12992/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12992/card_banner.png\";s:15:\"selling_point_0\";N;s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3599\";s:7:\"created\";s:19:\"2023-06-27 07:16:35\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:39:\"advance-email-delivery-and-logs-premium\";}i:7;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:5:\"10461\";s:12:\"developer_id\";s:3:\"282\";s:8:\"store_id\";s:4:\"5344\";s:10:\"install_id\";s:8:\"12588352\";s:4:\"slug\";s:18:\"attachment-support\";s:5:\"title\";s:18:\"Attachment Support\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/13141/icons/1e5d9d15239cff7a9bab6eeafa5c5e8b.png\";s:15:\"default_plan_id\";s:5:\"22047\";s:5:\"plans\";s:11:\"22047,22048\";s:8:\"features\";N;s:17:\"money_back_period\";N;s:13:\"refund_policy\";N;s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:2;s:22:\"premium_releases_count\";i:2;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_60d07f2229da6323270c237ab50cc\";s:2:\"id\";s:5:\"13141\";s:7:\"created\";s:19:\"2023-07-12 07:34:48\";s:7:\"updated\";s:19:\"2023-08-25 09:30:45\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"13141\";s:3:\"url\";N;s:11:\"description\";N;s:17:\"short_description\";N;s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/13141/banner.jpg\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/13141/card_banner.jpg\";s:15:\"selling_point_0\";N;s:15:\"selling_point_1\";N;s:15:\"selling_point_2\";N;s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3639\";s:7:\"created\";s:19:\"2023-07-18 11:17:30\";s:7:\"updated\";N;}s:12:\"premium_slug\";s:26:\"attachment-support-premium\";}}}s:7:\"created\";i:1693352561;s:9:\"timestamp\";i:1693438961;}s:54:\"get:/v1/plugins/10461/addons/pricing.json?type=visible\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:6:\"addons\";a:8:{i:0;O:8:\"stdClass\":2:{s:2:\"id\";i:10462;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"10462\";s:4:\"name\";s:18:\"smtpoffice365addon\";s:5:\"title\";s:24:\"Office 365 SMTP Pro Plan\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17716\";s:7:\"created\";s:19:\"2022-06-10 10:07:35\";s:7:\"updated\";s:19:\"2023-05-03 08:28:15\";s:7:\"pricing\";a:4:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17716\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:39.99000000000000198951966012828052043914794921875;s:14:\"lifetime_price\";d:129.990000000000009094947017729282379150390625;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"19993\";s:7:\"created\";s:19:\"2022-06-10 10:08:35\";s:7:\"updated\";s:19:\"2023-08-22 04:57:02\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17716\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:79.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";d:229.990000000000009094947017729282379150390625;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20370\";s:7:\"created\";s:19:\"2022-07-01 07:39:51\";s:7:\"updated\";s:19:\"2023-08-22 04:57:26\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17716\";s:8:\"licenses\";i:30;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:99.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";d:399.990000000000009094947017729282379150390625;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20371\";s:7:\"created\";s:19:\"2022-07-01 07:40:39\";s:7:\"updated\";s:19:\"2023-08-22 04:57:43\";s:8:\"currency\";s:3:\"usd\";}i:3;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17716\";s:8:\"licenses\";i:100;s:13:\"monthly_price\";N;s:12:\"annual_price\";i:199;s:14:\"lifetime_price\";d:599.990000000000009094947017729282379150390625;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"26409\";s:7:\"created\";s:19:\"2023-08-22 04:46:48\";s:7:\"updated\";s:19:\"2023-08-22 04:57:55\";s:8:\"currency\";s:3:\"usd\";}}}}}i:1;O:8:\"stdClass\":2:{s:2:\"id\";i:10497;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"10497\";s:4:\"name\";s:18:\"smtpamazonsesaddon\";s:5:\"title\";s:24:\"Amazon SES SMTP Pro Plan\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:0;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17741\";s:7:\"created\";s:19:\"2022-06-14 09:33:55\";s:7:\"updated\";s:19:\"2023-05-03 07:52:57\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17741\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:39.99000000000000198951966012828052043914794921875;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20030\";s:7:\"created\";s:19:\"2022-06-14 09:34:22\";s:7:\"updated\";s:19:\"2023-01-03 10:33:01\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17741\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:79.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20374\";s:7:\"created\";s:19:\"2022-07-01 07:45:46\";s:7:\"updated\";s:19:\"2023-05-03 07:53:00\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17741\";s:8:\"licenses\";i:30;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:99.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20375\";s:7:\"created\";s:19:\"2022-07-01 07:45:59\";s:7:\"updated\";s:19:\"2023-05-03 07:53:01\";s:8:\"currency\";s:3:\"usd\";}}}}}i:2;O:8:\"stdClass\":2:{s:2:\"id\";i:10625;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"10625\";s:4:\"name\";s:5:\"plan1\";s:5:\"title\";s:20:\"Twilio SMTP Pro Plan\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"17998\";s:7:\"created\";s:19:\"2022-07-05 09:25:20\";s:7:\"updated\";s:19:\"2023-05-03 07:51:43\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17998\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:39.99000000000000198951966012828052043914794921875;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20427\";s:7:\"created\";s:19:\"2022-07-05 09:25:38\";s:7:\"updated\";s:19:\"2023-01-03 10:42:35\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17998\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:79.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20428\";s:7:\"created\";s:19:\"2022-07-05 09:28:04\";s:7:\"updated\";s:19:\"2023-05-03 07:46:34\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"17998\";s:8:\"licenses\";i:30;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:99.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20429\";s:7:\"created\";s:19:\"2022-07-05 09:28:18\";s:7:\"updated\";s:19:\"2023-05-03 07:46:34\";s:8:\"currency\";s:3:\"usd\";}}}}}i:3;O:8:\"stdClass\":2:{s:2:\"id\";i:10805;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"10805\";s:4:\"name\";s:11:\"mailcontrol\";s:5:\"title\";s:21:\"Mail Control Pro Plan\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"18304\";s:7:\"created\";s:19:\"2022-08-03 10:42:40\";s:7:\"updated\";s:19:\"2023-05-03 07:52:33\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"18304\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:39.99000000000000198951966012828052043914794921875;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20783\";s:7:\"created\";s:19:\"2022-08-03 10:42:53\";s:7:\"updated\";s:19:\"2023-01-03 10:44:02\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"18304\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:79.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20784\";s:7:\"created\";s:19:\"2022-08-03 10:42:54\";s:7:\"updated\";s:19:\"2023-05-03 07:52:22\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"18304\";s:8:\"licenses\";i:30;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:99.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20785\";s:7:\"created\";s:19:\"2022-08-03 10:43:07\";s:7:\"updated\";s:19:\"2023-05-03 07:52:22\";s:8:\"currency\";s:3:\"usd\";}}}}}i:4;O:8:\"stdClass\":2:{s:2:\"id\";i:11667;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"11667\";s:4:\"name\";s:13:\"smtpzohoaddon\";s:5:\"title\";s:14:\"Post SMTP Zoho\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"19907\";s:7:\"created\";s:19:\"2022-12-22 12:14:56\";s:7:\"updated\";s:19:\"2023-01-03 10:27:27\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"19907\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:39.99000000000000198951966012828052043914794921875;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"22830\";s:7:\"created\";s:19:\"2022-12-22 12:15:36\";s:7:\"updated\";s:19:\"2023-01-03 10:25:46\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"19907\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:79.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"22831\";s:7:\"created\";s:19:\"2022-12-22 12:16:00\";s:7:\"updated\";s:19:\"2022-12-22 12:16:08\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"19907\";s:8:\"licenses\";i:30;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:99.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"22832\";s:7:\"created\";s:19:\"2022-12-22 12:16:14\";s:7:\"updated\";s:19:\"2022-12-22 12:16:19\";s:8:\"currency\";s:3:\"usd\";}}}}}i:5;O:8:\"stdClass\":2:{s:2:\"id\";i:12391;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"12391\";s:4:\"name\";s:5:\"basic\";s:5:\"title\";s:26:\"Report & Tracking Pro Plan\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"20995\";s:7:\"created\";s:19:\"2023-04-05 03:45:48\";s:7:\"updated\";s:19:\"2023-05-03 07:52:08\";s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"20995\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:39.99000000000000198951966012828052043914794921875;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"24352\";s:7:\"created\";s:19:\"2023-04-05 03:46:01\";s:7:\"updated\";N;s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"20995\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:79.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"24607\";s:7:\"created\";s:19:\"2023-04-27 10:35:05\";s:7:\"updated\";s:19:\"2023-04-27 10:35:10\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"20995\";s:8:\"licenses\";i:30;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:99.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"24354\";s:7:\"created\";s:19:\"2023-04-05 03:46:23\";s:7:\"updated\";s:19:\"2023-04-05 03:46:27\";s:8:\"currency\";s:3:\"usd\";}}}}}i:6;O:8:\"stdClass\":2:{s:2:\"id\";i:12992;s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"12992\";s:4:\"name\";s:30:\"advanceemaildeliveryandlogspro\";s:5:\"title\";s:35:\"Advance Email Delivery and Logs Pro\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"21849\";s:7:\"created\";s:19:\"2023-06-21 08:06:22\";s:7:\"updated\";N;s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"21849\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:39.99000000000000198951966012828052043914794921875;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"25475\";s:7:\"created\";s:19:\"2023-06-21 08:06:32\";s:7:\"updated\";s:19:\"2023-06-21 08:06:35\";s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"21849\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:79.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"25476\";s:7:\"created\";s:19:\"2023-06-21 08:06:40\";s:7:\"updated\";s:19:\"2023-06-21 08:06:47\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"21849\";s:8:\"licenses\";i:30;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:99.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"25477\";s:7:\"created\";s:19:\"2023-06-21 08:06:48\";s:7:\"updated\";s:19:\"2023-06-21 08:06:53\";s:8:\"currency\";s:3:\"usd\";}}}}}i:7;O:8:\"stdClass\":2:{s:2:\"id\";i:13141;s:5:\"plans\";a:2:{i:0;O:8:\"stdClass\":22:{s:9:\"plugin_id\";s:5:\"13141\";s:4:\"name\";s:4:\"free\";s:5:\"title\";s:4:\"Free\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"22047\";s:7:\"created\";s:19:\"2023-07-12 07:34:48\";s:7:\"updated\";N;}i:1;O:8:\"stdClass\":23:{s:9:\"plugin_id\";s:5:\"13141\";s:4:\"name\";s:8:\"proplans\";s:5:\"title\";s:9:\"Pro Plans\";s:11:\"description\";N;s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:1;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"22048\";s:7:\"created\";s:19:\"2023-07-12 07:56:25\";s:7:\"updated\";N;s:7:\"pricing\";a:3:{i:0;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"22048\";s:8:\"licenses\";i:1;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:39.99000000000000198951966012828052043914794921875;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"25697\";s:7:\"created\";s:19:\"2023-07-12 07:56:39\";s:7:\"updated\";N;s:8:\"currency\";s:3:\"usd\";}i:1;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"22048\";s:8:\"licenses\";i:5;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:79.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"25698\";s:7:\"created\";s:19:\"2023-07-12 07:56:40\";s:7:\"updated\";s:19:\"2023-07-12 07:56:48\";s:8:\"currency\";s:3:\"usd\";}i:2;O:8:\"stdClass\":11:{s:7:\"plan_id\";s:5:\"22048\";s:8:\"licenses\";i:30;s:13:\"monthly_price\";N;s:12:\"annual_price\";d:99.9899999999999948840923025272786617279052734375;s:14:\"lifetime_price\";N;s:15:\"is_whitelabeled\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"25699\";s:7:\"created\";s:19:\"2023-07-12 07:56:55\";s:7:\"updated\";s:19:\"2023-07-12 07:56:58\";s:8:\"currency\";s:3:\"usd\";}}}}}}}s:7:\"created\";i:1693352561;s:9:\"timestamp\";i:1693438961;}}','no'),(197636,'et_pb_contact_form_3065a01eb6adf5e2943b57c2be354369','off','yes'),(207160,'_transient_timeout_et_core_path','1693510048','no'),(207161,'_transient_et_core_path','/home/localmarket/capitalbookkeepingco.com/wp-content/themes/Divi/core','no'),(206486,'_transient_timeout_et_core_version','1693510048','no'),(206487,'_transient_et_core_version','4.22.1','no'),(206446,'et_pb_contact_form_98d70a908194d745e337071ba196618a','off','yes'),(206451,'et_pb_contact_form_3fd51ec9bbd7bb23dd16b834d13b4381','off','yes'),(206458,'et_pb_contact_form_20ca9c7443ea2bf866c3499e0329dadc','off','yes'),(206459,'et_pb_contact_form_da747267942a3a1f2c3a60b19f0a43c8','off','yes'),(206496,'wp_calendar_block_has_published_posts','','yes'),(206498,'secret_key','3]&kvj_C,xwDPSW$$rXZh-c6QZ@)@4#Nlv`/ CCk8!2;=3xdAQi;|_W^`<XS<(E]','no'),(206275,'_transient_timeout_wpseo_total_unindexed_general_items','1693424379','no'),(206276,'_transient_wpseo_total_unindexed_general_items','0','no'),(207067,'_transient_timeout_wpseo_unindexed_post_link_count','1693505661','no'),(207068,'_transient_wpseo_unindexed_post_link_count','0','no'),(206281,'_site_transient_timeout_browser_e7aa457f36bfe100f0ea778353684056','1693936940','no'),(206295,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1693392699;s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"4.22.1\";s:10:\"Divi_Child\";s:19:\"Updated for Divi 3+\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:4:\"Divi\";a:6:{s:5:\"theme\";s:4:\"Divi\";s:11:\"new_version\";s:6:\"4.22.1\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:141:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=db020a734d778da9affc5f1ddedbde8c80ebb539&username=mclelj1\";s:8:\"requires\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";}}s:12:\"translations\";a:0:{}}','no'),(206296,'_site_transient_et_update_themes','O:8:\"stdClass\":4:{s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"4.22.1\";s:10:\"Divi_Child\";s:19:\"Updated for Divi 3+\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:4:\"Divi\";a:6:{s:5:\"theme\";s:4:\"Divi\";s:11:\"new_version\";s:6:\"4.22.1\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:141:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=db020a734d778da9affc5f1ddedbde8c80ebb539&username=mclelj1\";s:8:\"requires\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";}}s:12:\"last_checked\";i:1693392699;}','no'),(206383,'et_pb_contact_form_00c0f89207ef51877701cdcea899945a','off','yes'),(206455,'et_pb_contact_form_2122962bfcdd822fbe37825d7b6f5aaf','off','yes'),(206456,'et_pb_contact_form_f2177138966ac2bb6b3eea98b9f55ba4','off','yes'),(206457,'et_pb_contact_form_f9a1417f9efb199e021feee440e85b43','off','yes'),(206404,'et_pb_contact_form_72f5cdb320cbbf074d644446e772289d','off','yes'),(206482,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":3:{s:7:\"checked\";a:10:{s:31:\"business-reviews-bundle/brb.php\";s:5:\"1.8.8\";s:72:\"change-admin-email-setting-without-outbound-email/change-admin-email.php\";s:3:\"3.3\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.3\";s:35:\"classic-widgets/classic-widgets.php\";s:3:\"0.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.8\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:6:\"1.18.1\";s:26:\"post-smtp/postman-smtp.php\";s:7:\"2.5.9.4\";s:23:\"wordfence/wordfence.php\";s:6:\"7.10.3\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"3.8.2\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"21.0\";}s:8:\"response\";a:0:{}s:12:\"last_checked\";i:1693424302;}','no'),(206481,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1693424302;s:8:\"response\";a:1:{s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"3.9.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.3.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.jpg?rev=2811094\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.jpg?rev=2811094\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.3.1\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:72:\"change-admin-email-setting-without-outbound-email/change-admin-email.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:63:\"w.org/plugins/change-admin-email-setting-without-outbound-email\";s:4:\"slug\";s:49:\"change-admin-email-setting-without-outbound-email\";s:6:\"plugin\";s:72:\"change-admin-email-setting-without-outbound-email/change-admin-email.php\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:80:\"https://wordpress.org/plugins/change-admin-email-setting-without-outbound-email/\";s:7:\"package\";s:92:\"https://downloads.wordpress.org/plugin/change-admin-email-setting-without-outbound-email.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:102:\"https://ps.w.org/change-admin-email-setting-without-outbound-email/assets/icon-256x256.jpg?rev=2264324\";s:2:\"1x\";s:102:\"https://ps.w.org/change-admin-email-setting-without-outbound-email/assets/icon-128x128.jpg?rev=2264324\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:105:\"https://ps.w.org/change-admin-email-setting-without-outbound-email/assets/banner-1544x500.jpg?rev=2264324\";s:2:\"1x\";s:104:\"https://ps.w.org/change-admin-email-setting-without-outbound-email/assets/banner-772x250.jpg?rev=2264324\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.3\";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.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:35:\"classic-widgets/classic-widgets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/classic-widgets\";s:4:\"slug\";s:15:\"classic-widgets\";s:6:\"plugin\";s:35:\"classic-widgets/classic-widgets.php\";s:11:\"new_version\";s:3:\"0.3\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/classic-widgets/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/classic-widgets.0.3.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:59:\"https://s.w.org/plugins/geopattern-icon/classic-widgets.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{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:3:\"5.8\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.8.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.2\";}s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:45:\"w.org/plugins/duracelltomi-google-tag-manager\";s:4:\"slug\";s:31:\"duracelltomi-google-tag-manager\";s:6:\"plugin\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:11:\"new_version\";s:6:\"1.18.1\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/duracelltomi-google-tag-manager/\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.18.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-256x256.png?rev=1708451\";s:2:\"1x\";s:84:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-128x128.png?rev=1708451\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-1544x500.png?rev=1708451\";s:2:\"1x\";s:86:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-772x250.png?rev=1708451\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.4.0\";}s:26:\"post-smtp/postman-smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/post-smtp\";s:4:\"slug\";s:9:\"post-smtp\";s:6:\"plugin\";s:26:\"post-smtp/postman-smtp.php\";s:11:\"new_version\";s:7:\"2.5.9.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/post-smtp/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/post-smtp.2.5.9.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/post-smtp/assets/icon-128x128.gif?rev=2758621\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/post-smtp/assets/banner-1544x500.jpg?rev=2742027\";s:2:\"1x\";s:64:\"https://ps.w.org/post-smtp/assets/banner-772x250.jpg?rev=2749492\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.6.0\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:6:\"7.10.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wordfence.7.10.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"21.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.21.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.1\";}}}','no'),(206308,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.3.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.3.1\";s:7:\"version\";s:5:\"6.3.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1693417661;s:15:\"version_checked\";s:5:\"6.3.1\";s:12:\"translations\";a:0:{}}','no'),(207030,'_site_transient_timeout_community-events-938e1d93f9af6ccb09fc22678ba16531','1693460720','no'),(207031,'_site_transient_community-events-938e1d93f9af6ccb09fc22678ba16531','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"207.102.191.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:44:\"WordCamp Vancouver, British Columbia, Canada\";s:3:\"url\";s:36:\"https://vancouver.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-09-23 08:00:00\";s:8:\"end_date\";s:19:\"2023-09-23 08:00:00\";s:20:\"start_unix_timestamp\";i:1695481200;s:18:\"end_unix_timestamp\";i:1695481200;s:8:\"location\";a:4:{s:8:\"location\";s:35:\"Vancouver, British Columbia, Canada\";s:7:\"country\";s:2:\"CA\";s:8:\"latitude\";d:49.28292609999999740466591902077198028564453125;s:9:\"longitude\";d:-123.1203895999999957666659611277282238006591796875;}}}}','no'),(206398,'et_pb_contact_form_16fe283c06979c842f4b0307f276eaa8','off','yes'),(206375,'et_pb_contact_form_45c457449b2c653a345c28c5d498416c','off','yes'),(206376,'et_pb_contact_form_85a849515dd164d463aa4ab22061af47','off','yes'),(206377,'et_pb_contact_form_c4fb3a5e22a417a5a1a712064f4014d9','off','yes'),(206380,'et_pb_contact_form_d41846608893da0dc50d8b1c8dc03705','off','yes'),(197610,'et_pb_contact_form_658ee6bfefe1bfd1763058e20ded4070','off','yes'),(204845,'_site_transient_timeout_browser_15c2f6f9416d00cec8b4f729460293c0','1693421761','no'),(204846,'_site_transient_browser_15c2f6f9416d00cec8b4f729460293c0','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"115.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(204847,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1693421762','no'),(204848,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(205737,'_site_transient_timeout_browser_3357fadb0316939352bbdd4d5360a97f','1693575046','no'),(205738,'_site_transient_browser_3357fadb0316939352bbdd4d5360a97f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"116.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(206282,'_site_transient_browser_e7aa457f36bfe100f0ea778353684056','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"116.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(206539,'et_pb_contact_form_9dc6c46864f78615f2ae9fe2691456c5','off','yes'),(206464,'et_pb_contact_form_2af494b0d5dcba354514235cc95c54c4','off','yes'),(206467,'et_pb_contact_form_286bb650cf23adc5c304860814c740b8','off','yes'),(206483,'wpcf7','a:3:{s:7:\"version\";s:3:\"5.8\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1693337226;s:7:\"version\";s:3:\"5.8\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}s:9:\"recaptcha\";a:1:{s:40:\"6LcU9eQnAAAAAABNU9x48CH6_OlEgTNRd0swJME1\";s:40:\"6LcU9eQnAAAAAI2p1ObequYof3LKz9eik7wEf7Xe\";}}','yes'),(206387,'et_pb_contact_form_ccb5ed7f40faf056ad33545529c245e5','off','yes'),(206399,'et_pb_contact_form_eb1bbc808d5028e25697b2edb9cdda4f','off','yes'),(206931,'et_pb_contact_form_b3f455a23bd1ad33b8874a01a4914257','off','yes'),(206935,'et_pb_contact_form_238de563836cbcd30a0b0b8fcbc95213','off','yes'),(206980,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1693459078','no'),(206981,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1693459078','no'),(206982,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1693415878','no'),(207019,'_site_transient_timeout_community-events-e292a10a64013f9703c59d0e945b9713','1693460408','no'),(206804,'et_pb_contact_form_42da3872263289454adcbb270a9ad09b','off','yes'),(206302,'et_divi_builder_global_presets_ng','O:8:\"stdClass\":0:{}','no'),(207028,'_transient_timeout_wfcredentialstatus_4','1693421116','no'),(207029,'_transient_wfcredentialstatus_4','0412fa377adc9cf4fe8eb2f6de62bfb5520863de5c06c127a7020c714610f7f38','no'),(206285,'can_compress_scripts','0','yes'),(207020,'_site_transient_community-events-e292a10a64013f9703c59d0e945b9713','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"124.105.100.0\";}s:6:\"events\";a:0:{}}','no'),(206946,'_transient_timeout_et_builder_most_used_meta_keys','1693414793','no'),(206947,'_transient_et_builder_most_used_meta_keys','a:1:{i:0;s:22:\"et_enqueued_post_fonts\";}','no'),(206948,'_transient_timeout_et_builder_dynamic_content_used_meta_keys_185','1693414793','no'),(206949,'_transient_et_builder_dynamic_content_used_meta_keys_185','a:0:{}','no'),(206953,'et_pb_contact_form_f995883027ee5d047e6e79749c6bbe3b','off','yes'),(206978,'_site_transient_timeout_community-events-aec3e133a9da22f4b753f235aeaf79c4','1693459078','no'),(206979,'_site_transient_community-events-aec3e133a9da22f4b753f235aeaf79c4','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"108.180.8.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:44:\"WordCamp Vancouver, British Columbia, Canada\";s:3:\"url\";s:36:\"https://vancouver.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-09-23 08:00:00\";s:8:\"end_date\";s:19:\"2023-09-23 08:00:00\";s:20:\"start_unix_timestamp\";i:1695481200;s:18:\"end_unix_timestamp\";i:1695481200;s:8:\"location\";a:4:{s:8:\"location\";s:35:\"Vancouver, British Columbia, Canada\";s:7:\"country\";s:2:\"CA\";s:8:\"latitude\";d:49.28292609999999740466591902077198028564453125;s:9:\"longitude\";d:-123.1203895999999957666659611277282238006591796875;}}}}','no'),(206991,'_transient_timeout_settings_errors','1693415968','no'),(206992,'_transient_settings_errors','a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:15:\"Settings saved.\";s:4:\"type\";s:7:\"success\";}}','no'),(206851,'_transient_timeout_et_check_mod_pagespeed','1693487457','no'),(206852,'_transient_et_check_mod_pagespeed','','no'),(207173,'_transient_timeout_wpseo_total_unindexed_posts_limited','1693425197','no'),(206928,'_site_transient_timeout_available_translations','1693424730','no'),(206929,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.5/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-06-18 08:25:23\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 08:07:35\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.23/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-06-23 11:21:55\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 06:53:25\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 09:23:37\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 08:20:14\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-05 14:06:30\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 15:27:26\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 09:52:35\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.3.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-18 08:19:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 18:32:34\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 18:29:34\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 09:49:50\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 12:41:04\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 07:13:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 15:57:23\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 16:08:07\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 15:58:51\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 07:25:21\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-05-17 04:31:21\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-04 16:53:05\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-13 17:52:55\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 19:57:59\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.18/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-26 01:50:26\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-09 16:14:38\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-26 22:44:00\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 13:15:12\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-25 15:24:22\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 15:42:01\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-10 17:08:26\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 08:44:34\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-22 18:15:33\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-09 07:20:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.30\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.30/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 09:07:29\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-10 07:55:29\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-22 09:25:05\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-18 14:34:17\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-24 17:16:15\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-07 01:15:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2023-05-19 07:40:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.18/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-04 06:07:20\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-09 00:11:15\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-18 17:02:03\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 18:51:09\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 01:58:55\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.12\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.12/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 21:47:18\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-25 08:55:15\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-21 08:48:39\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:56:04\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 11:01:53\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-02 09:00:40\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.31\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.31/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-23 18:55:37\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-21 12:17:05\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:22:05\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-23 18:57:54\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:22:49\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:43:02\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.13/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-17 07:24:11\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-13 11:41:50\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 12:28:12\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 10:40:17\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:44:44\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.15\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.15/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.7/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.22/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 22:20:22\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.13/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-17 14:06:22\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 16:27:09\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(206509,'_transient_timeout_wpseo_unindexed_term_link_count','1693424379','no'),(206510,'_transient_wpseo_unindexed_term_link_count','0','no'),(207065,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1693505661','no'),(207066,'_transient_wpseo_total_unindexed_post_type_archives','0','no'),(207175,'_transient_timeout_wpseo_total_unindexed_terms_limited','1693425197','no'),(207176,'_transient_wpseo_total_unindexed_terms_limited','0','no'),(207174,'_transient_wpseo_total_unindexed_posts_limited','0','no'),(206540,'et_pb_contact_form_9fb68424475c148fb09b5da21bf70829','off','yes'),(207083,'_transient_timeout__et_builder_gf_feature_cache','1693506291','no'),(207084,'_transient__et_builder_gf_feature_cache','1','no'),(207026,'_transient_timeout_license_status_KOC47UYM-GWEE45HJ-SE79QL03-HKSV0WWC-GFJK67QX','1693428314','no'),(207027,'_transient_license_status_KOC47UYM-GWEE45HJ-SE79QL03-HKSV0WWC-GFJK67QX','O:8:\"stdClass\":6:{s:6:\"status\";s:7:\"success\";s:14:\"license_status\";b:1;s:15:\"license_expired\";s:13:\"1653871986477\";s:14:\"renewal_status\";b:0;s:12:\"renewal_date\";s:10:\"2020-05-30\";s:14:\"plugin_version\";s:6:\"1.9.27\";}','no');
/*!40000 ALTER TABLE `wpvu_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpvu_post_smtp_logmeta`
--

DROP TABLE IF EXISTS `wpvu_post_smtp_logmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpvu_post_smtp_logmeta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `log_id` bigint(20) NOT NULL,
  `meta_key` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpvu_post_smtp_logmeta`
--

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

--
-- Table structure for table `wpvu_post_smtp_logs`
--

DROP TABLE IF EXISTS `wpvu_post_smtp_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpvu_post_smtp_logs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `solution` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `success` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `from_header` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `to_header` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `cc_header` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `bcc_header` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `reply_to_header` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `transport_uri` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `original_to` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `original_subject` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `original_message` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `original_headers` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `session_transcript` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `time` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpvu_post_smtp_logs`
--

LOCK TABLES `wpvu_post_smtp_logs` WRITE;
/*!40000 ALTER TABLE `wpvu_post_smtp_logs` DISABLE KEYS */;
INSERT INTO `wpvu_post_smtp_logs` VALUES (1,'All good, mail sent.','1','WordPress <wordpress@capitalbookkeepingco.com>','Marketing@localmarketingplus.ca','','','','smtp:none:none://localhost:25','Marketing@localmarketingplus.ca','Postman SMTP Test (capitalbookkeepingco.com)','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.5.9.4 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.5.9.4\r\n												<br/>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>','Content-Type: multipart/alternative;\r\nMIME-Version: 1.0\r\n','smtp:none:none://localhost:25\n\n',1693336628),(2,'All good, mail sent.','1','\"test email\" <mail@capitalbookkeepingco.com>','warrenabayon@gmail.com','','','\"test email\" <Marketing@localmarketingplus.ca>','smtp:none:none://localhost:25','warrenabayon@gmail.com','New Message From Capital Bookkeeping Co','Name: test email\r\nEmail: Marketing@localmarketingplus.ca\r\nMessage: test email','','smtp:none:none://localhost:25\n\n',1693336660),(3,'All good, mail sent.','1','\"test email marketing\" <mail@capitalbookkeepingco.com>','Marketing@localmarketingplus.ca','','','\"test email marketing\" <warrenabayon@gmail.com>','smtp:none:none://localhost:25','Marketing@localmarketingplus.ca','New Message From Capital Bookkeeping Co','Name: test email marketing\r\nEmail: warrenabayon@gmail.com\r\nMessage: lorem email test','','smtp:none:none://localhost:25\n\n',1693336894),(4,'All good, mail sent.','1','Capital Bookkeeping Co <info@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, Marketing@localmarketingplus.ca','','','warrenabayon@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,Marketing@localmarketingplus.ca','Capital Bookkeeping Co \"test contact\"','From: test email warrenabayon@gmail.com\nSubject: test contact\n\nMessage Body:\nlorem ipsum test\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <info@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: warrenabayon@gmail.com\n','smtp:none:none://localhost:25\n\n',1693337531),(5,'All good, mail sent.','1','Capital Bookkeeping Co <info@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, Marketing@localmarketingplus.ca, info@capitalbookkeepingco.com','','','warrenabayon@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,Marketing@localmarketingplus.ca,info@capitalbookkeepingco.com','Capital Bookkeeping Co \"Inquiry\"','From: test warrenabayon@gmail.com\nSubject: [your-subject]\n\nMessage Body:\nthis is a test email\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <info@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: warrenabayon@gmail.com\n','smtp:none:none://localhost:25\n\n',1693341109),(6,'All good, mail sent.','1','Capital Bookkeeping Co <info@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com','','','warrenabayon@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com','Capital Bookkeeping Co \"Inquiry\"','From: warren  test 2 warrenabayon@gmail.com\nSubject: \"Inquiry\"\n\nMessage Body:\nthis is a test email again\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <info@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: warrenabayon@gmail.com\n','smtp:none:none://localhost:25\n\n',1693341330),(7,'All good, mail sent.','1','wordpress@capitalbookkeepingco.com','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com','','','warrenabayon@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com','Capital Bookkeeping Co \"Inquiry\"','From: test 5 warrenabayon@gmail.com\nSubject: \"Inquiry\"\n\nMessage Body:\ntest 5\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: warrenabayon@gmail.com\n','smtp:none:none://localhost:25\n\n',1693341418),(8,'All good, mail sent.','1','info@capitalbookkeepingco.com','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com','','','warrenabayon@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com','Capital Bookkeeping Co \"Inquiry\"','From: test6 warrenabayon@gmail.com\nSubject: \"Inquiry\"\n\nMessage Body:\ntest6\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: <info@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: warrenabayon@gmail.com\n','smtp:none:none://localhost:25\n\n',1693341472),(9,'All good, mail sent.','1','info@capitalbookkeepingco.com','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com','','','warrenabayon@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com','Capital Bookkeeping Co \"Inquiry\"','From: test7 warrenabayon@gmail.com\nSubject: \"Inquiry\"\n\nMessage Body:\ntest7\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: <info@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: warrenabayon@gmail.com\n','smtp:none:none://localhost:25\n\n',1693341527),(10,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com','','','warrenabayon@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com','Capital Bookkeeping Co \"Inquiry\"','From: test8 warrenabayon@gmail.com\nSubject: \"Inquiry\"\n\nMessage Body:\ntest8\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: warrenabayon@gmail.com\n','smtp:none:none://localhost:25\n\n',1693341589),(11,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +2 more','','','warrenabayon@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joanng@localmarketingplus.ca','Capital Bookkeeping Co \"Inquiry\"','From: testemail 10 warrenabayon@gmail.com\nSubject: \"Inquiry\"\n\nMessage Body:\ntestemail 10\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: warrenabayon@gmail.com\n','smtp:none:none://localhost:25\n\n',1693341665),(12,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +2 more','','','joann@localmarketingplus.ca','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joanng@localmarketingplus.ca','Capital Bookkeeping Co \"Inquiry\"','From: Jo Ann joann@localmarketingplus.ca\nSubject: \"Inquiry\"\n\nMessage Body:\nPlease let  me know if you received this\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: joann@localmarketingplus.ca\n','smtp:none:none://localhost:25\n\n',1693344101),(13,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +2 more','','','marketting@localmarketingplus.ca','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joanng@localmarketingplus.ca','Capital Bookkeeping Co New submission from Contact Form','From: test v2 marketting@localmarketingplus.ca\nSubject: New submission from Contact Form\n\nMessage Body:\nupdatedt test\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: marketting@localmarketingplus.ca\n','smtp:none:none://localhost:25\n\n',1693344406),(14,'All good, mail sent.','1','WordPress <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com','','','','smtp:none:none://localhost:25','info@capitalbookkeepingco.com','[Capital Bookkeeping Co] Password Changed','Hi Brenton,\n\nThis notice confirms that your password was changed on Capital Bookkeeping Co.\n\nIf you did not change your password, please contact the Site Administrator at\ninfo@capitalbookkeepingco.com\n\nThis email has been sent to info@capitalbookkeepingco.com\n\nRegards,\nAll at Capital Bookkeeping Co\nhttps://capitalbookkeepingco.com','','smtp:none:none://localhost:25\n\n',1693345472),(15,'All good, mail sent.','1','WordPress <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com','','','','smtp:none:none://localhost:25','info@capitalbookkeepingco.com','[Wordfence Alert] capitalbookkeepingco.com Admin Login','This email was sent from your website \"Capital Bookkeeping Co\" by the Wordfence plugin at Tuesday 29th of August 2023 at 09:49:41 PM\nThe Wordfence administrative URL for this site is: https://capitalbookkeepingco.com/wp-admin/admin.php?page=Wordfence\nA user with username \"localmarket\" who has administrator access signed in to your WordPress site.\nUser IP: 176.100.43.164\nUser hostname: 176.100.43.164\nUser location: Vancouver, British Columbia, Canada\n\n\n\n--\nTo change your alert options for Wordfence, visit:\nhttps://capitalbookkeepingco.com/wp-admin/admin.php?page=Wordfence&subpage=global_options\nTo see current Wordfence alerts, visit:\nhttps://capitalbookkeepingco.com/wp-admin/admin.php?page=Wordfence\n\n\n\nNo longer an administrator for this site? Click here to stop receiving security alerts: https://capitalbookkeepingco.com/?_wfsf=removeAlertEmail&jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImluZm9AY2FwaXRhbGJvb2trZWVwaW5nY28uY29tIiwiX2V4cCI6MTY5Mzk1MDU4MX0.wiW-Qmq1DLRwwv0Aer6BxeD5jEJLX17bTBkPcqagp9o','','smtp:none:none://localhost:25\n\n',1693345781),(16,'All good, mail sent.','1','WordPress <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com','','','','smtp:none:none://localhost:25','info@capitalbookkeepingco.com','[Wordfence Alert] capitalbookkeepingco.com Admin Login','This email was sent from your website \"Capital Bookkeeping Co\" by the Wordfence plugin at Tuesday 29th of August 2023 at 09:56:47 PM\nThe Wordfence administrative URL for this site is: https://capitalbookkeepingco.com/wp-admin/admin.php?page=Wordfence\nA user with username \"Brenton\" who has administrator access signed in to your WordPress site.\nUser IP: 108.180.8.193\nUser hostname: 108.180.8.193\nUser location: West Kelowna, British Columbia, Canada\n\n\n\n--\nTo change your alert options for Wordfence, visit:\nhttps://capitalbookkeepingco.com/wp-admin/admin.php?page=Wordfence&subpage=global_options\nTo see current Wordfence alerts, visit:\nhttps://capitalbookkeepingco.com/wp-admin/admin.php?page=Wordfence\n\n\n\nNo longer an administrator for this site? Click here to stop receiving security alerts: https://capitalbookkeepingco.com/?_wfsf=removeAlertEmail&jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImluZm9AY2FwaXRhbGJvb2trZWVwaW5nY28uY29tIiwiX2V4cCI6MTY5Mzk1MTAwN30.3VQf-xO-zxzvNo03wjV_4TVEyEP-w-ZItl2Zh4x7A1M','','smtp:none:none://localhost:25\n\n',1693346207),(17,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +2 more','','','brentonscottsmith@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca','Capital Bookkeeping Co New submission from Contact Form','From: Brenton brentonscottsmith@gmail.com\nSubject: New submission from Contact Form\n\nMessage Body:\nTesting the contact us website functionality\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: brentonscottsmith@gmail.com\n','smtp:none:none://localhost:25\n\n',1693347443),(18,'All good, mail sent.','1','\"Brenton\" <mail@capitalbookkeepingco.com>','capitalbookkeepingco@outlook.com, info@localmarketingplus.ca','','','\"Brenton\" <brentonscottsmith@gmail.com>','smtp:none:none://localhost:25','capitalbookkeepingco@outlook.com,info@localmarketingplus.ca','New Message From Capital Bookkeeping Co','Name:Brenton\r\nContact No: 250-300-1582\r\nEmail: brentonscottsmith@gmail.com\r\nMessage: Test Question','','smtp:none:none://localhost:25\n\n',1693351526),(19,'All good, mail sent.','1','WordPress <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com','','','','smtp:none:none://localhost:25','info@capitalbookkeepingco.com','Postman SMTP Test (capitalbookkeepingco.com)','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.5.9.4 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.5.9.4\r\n												<br/>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>','Content-Type: multipart/alternative;\r\nMIME-Version: 1.0\r\n','smtp:none:none://localhost:25\n\n',1693351713),(20,'All good, mail sent.','1','\"Brenton\" <mail@capitalbookkeepingco.com>','brentonscottsmith@gmail.com, capitalbookkeepingco@outlook.com, info@localmarketingplus.ca','','','\"Brenton\" <brentonscottsmith@gmail.com>','smtp:none:none://localhost:25','brentonscottsmith@gmail.com,capitalbookkeepingco@outlook.com,info@localmarketingplus.ca','New Message From Capital Bookkeeping Co','Name:Brenton\r\nContact No: 250-300-1582\r\nEmail: brentonscottsmith@gmail.com\r\nMessage: Test adding my gmail account','','smtp:none:none://localhost:25\n\n',1693353877),(21,'All good, mail sent.','1','\"Brenton\" <mail@capitalbookkeepingco.com>','brentonscottsmith@gmail.com, info@capitalbookkeepingco.com, capitalbookkeepingco@outlook.com.. +1 more','','','\"Brenton\" <brentonscottsmith@gmail.com>','smtp:none:none://localhost:25','brentonscottsmith@gmail.com,info@capitalbookkeepingco.com,capitalbookkeepingco@outlook.com,info@localmarketingplus.ca','New Message From Capital Bookkeeping Co','Name:Brenton\r\nContact No: 250-300-1582\r\nEmail: brentonscottsmith@gmail.com\r\nMessage: Test of Have a Question box in website footer.','','smtp:none:none://localhost:25\n\n',1693414646),(22,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +3 more','','','brentonscottsmith@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com','Capital Bookkeeping Co New submission from Contact Form','From: Brenton brentonscottsmith@gmail.com\nSubject: New submission from Contact Form\n\nMessage Body:\nTest of Contact us page\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: brentonscottsmith@gmail.com\n','smtp:none:none://localhost:25\n\n',1693414670),(23,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +3 more','','','brentonscottsmith@gmail.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com','Capital Bookkeeping Co New submission from Contact Form','From: Brenton brentonscottsmith@gmail.com\nSubject: New submission from Contact Form\n\nMessage Body:\nTest at 10:19am of contact us form.\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: brentonscottsmith@gmail.com\n','smtp:none:none://localhost:25\n\n',1693415991),(24,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +3 more','','','marketing@localmarketingplus.ca','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com','Capital Bookkeeping Co New submission from Contact Form','From: test email 10 marketing@localmarketingplus.ca\nSubject: New submission from Contact Form\n\nMessage Body:\nthis is a test\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: marketing@localmarketingplus.ca\n','smtp:none:none://localhost:25\n\n',1693417397),(25,'All good, mail sent.','1','WordPress <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com','','','','smtp:none:none://localhost:25','info@capitalbookkeepingco.com','[Wordfence Alert] capitalbookkeepingco.com Admin Login','This email was sent from your website \"Capital Bookkeeping Co\" by the Wordfence plugin at Wednesday 30th of August 2023 at 05:45:16 PM\nThe Wordfence administrative URL for this site is: https://capitalbookkeepingco.com/wp-admin/admin.php?page=Wordfence\nA user with username \"Brenton\" who has administrator access signed in to your WordPress site.\nUser IP: 207.102.191.231\nUser hostname: d207-102-191-231.bchsia.telus.net\nUser location: Kelowna, British Columbia, Canada\n\n\n\n--\nTo change your alert options for Wordfence, visit:\nhttps://capitalbookkeepingco.com/wp-admin/admin.php?page=Wordfence&subpage=global_options\nTo see current Wordfence alerts, visit:\nhttps://capitalbookkeepingco.com/wp-admin/admin.php?page=Wordfence\n\n\n\nNo longer an administrator for this site? Click here to stop receiving security alerts: https://capitalbookkeepingco.com/?_wfsf=removeAlertEmail&jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImluZm9AY2FwaXRhbGJvb2trZWVwaW5nY28uY29tIiwiX2V4cCI6MTY5NDAyMjMxNn0.BbyQH1dyM1Bbc3mtzdmA77dwplSJ1F4Lmi-3ZROTorQ','','smtp:none:none://localhost:25\n\n',1693417517),(26,'All good, mail sent.','1','WordPress <wordpress@capitalbookkeepingco.com>','rgood@cmitsolutions.com','','','','smtp:none:none://localhost:25','rgood@cmitsolutions.com','Postman SMTP Test (capitalbookkeepingco.com)','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.5.9.4 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.5.9.4\r\n												<br/>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>','Content-Type: multipart/alternative;\r\nMIME-Version: 1.0\r\n','smtp:none:none://localhost:25\n\n',1693419592),(27,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +3 more','','','rgood@cmitsolutions.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com;rgood@cmitsolutions.com','Capital Bookkeeping Co New submission from Contact Form','From: Rhys rgood@cmitsolutions.com\nSubject: New submission from Contact Form\n\nMessage Body:\nTest email to see if rgood@cmitsolutions.com can receive email from contact form on capitalbookkeepingco.com.\r\n\r\nHi Brenton/Jo Ann,\r\n\r\nBrenton, please inform me if you receive this email.\r\n\r\nI have added my email address to the contact form recipients to test.\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: rgood@cmitsolutions.com\n','smtp:none:none://localhost:25\n\n',1693419875),(28,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +4 more','','','rgood@cmitsolutions.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com,rgood@cmitsolutions.com','Capital Bookkeeping Co New submission from Contact Form','From: Rhys rgood@cmitsolutions.com\nSubject: New submission from Contact Form\n\nMessage Body:\nThis is to test receiving/sending for contact form.\r\n\r\nHi Brenton,\r\n\r\nPlease inform me if you receive this email.\r\n\r\nCheers,\r\n\r\nRhys Good\r\nCMIT Solutions\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: rgood@cmitsolutions.com\n','smtp:none:none://localhost:25\n\n',1693420060),(29,'All good, mail sent.','1','\"Eric Jones\" <mail@capitalbookkeepingco.com>','brentonscottsmith@gmail.com, info@capitalbookkeepingco.com, capitalbookkeepingco@outlook.com.. +1 more','','','\"Eric Jones\" <ericjonesmyemail@gmail.com>','smtp:none:none://localhost:25','brentonscottsmith@gmail.com,info@capitalbookkeepingco.com,capitalbookkeepingco@outlook.com,info@localmarketingplus.ca','New Message From Capital Bookkeeping Co','Name:Eric Jones\r\nContact No: 555-555-1212\r\nEmail: ericjonesmyemail@gmail.com\r\nMessage: To the capitalbookkeepingco.com Webmaster. I just found your site, quick question…\r\n\r\nMy name’s Eric, I found capitalbookkeepingco.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=capitalbookkeepingco.com','','smtp:none:none://localhost:25\n\n',1693421367),(30,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +4 more','','','marketing@localmarketingplus.ca','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com,rgood@cmitsolutions.com','Capital Bookkeeping Co New submission from Contact Form','From: spf test 1 marketing@localmarketingplus.ca\nSubject: New submission from Contact Form\n\nMessage Body:\ntest spf 1\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: marketing@localmarketingplus.ca\n','smtp:none:none://localhost:25\n\n',1693422490),(31,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +4 more','','','marketing@localmarketingplus.ca','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com,rgood@cmitsolutions.com','Capital Bookkeeping Co New submission from Contact Form','From: test spf 2 marketing@localmarketingplus.ca\nSubject: New submission from Contact Form\n\nMessage Body:\ntest email 2\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: marketing@localmarketingplus.ca\n','smtp:none:none://localhost:25\n\n',1693422752),(32,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +5 more','','','marketing@localmarketingplus.ca','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com,rgood@cmitsolutions.com,warrenabayon@gmail.com','Capital Bookkeeping Co New submission from Contact Form','From: test spf 3 marketing@localmarketingplus.ca\nSubject: New submission from Contact Form\n\nMessage Body:\ntest spf 3 added email new\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: marketing@localmarketingplus.ca\n','smtp:none:none://localhost:25\n\n',1693422867),(33,'All good, mail sent.','1','Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>','info@capitalbookkeepingco.com, marketing@localmarketingplus.ca, info@capitalbookkeepingco.com.. +5 more','','','test@test.com','smtp:none:none://localhost:25','info@capitalbookkeepingco.com,marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com,rgood@cmitsolutions.com,warrenabayon@gmail.com','Capital Bookkeeping Co New submission from Contact Form','From: John Romeo test@test.com\nSubject: New submission from Contact Form\n\nMessage Body:\nHello testing contact page form\n\n-- \nThis e-mail was sent from a contact form on Capital Bookkeeping Co (https://capitalbookkeepingco.com)','From: Capital Bookkeeping Co <wordpress@capitalbookkeepingco.com>\nX-WPCF7-Content-Type: text/plain\nReply-To: test@test.com\n','smtp:none:none://localhost:25\n\n',1693424282);
/*!40000 ALTER TABLE `wpvu_post_smtp_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpvu_postmeta`
--

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

--
-- Dumping data for table `wpvu_postmeta`
--

LOCK TABLES `wpvu_postmeta` WRITE;
/*!40000 ALTER TABLE `wpvu_postmeta` DISABLE KEYS */;
INSERT INTO `wpvu_postmeta` VALUES (2,3,'_wp_page_template','default'),(4,8,'_edit_last','1'),(5,8,'_wp_page_template','page-template-blank.php'),(6,8,'_et_pb_post_hide_nav','default'),(7,8,'_et_pb_page_layout','et_right_sidebar'),(8,8,'_et_pb_side_nav','off'),(9,8,'_et_pb_use_builder','on'),(10,8,'_et_pb_first_image',''),(11,8,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_6 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Capital Bookkeeping  You Can Rely On Us!</div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_dark\" href=\"tel:250-707-8290\" target=\"_blank\">Call Now 250-707-8290</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_3 et_pb_contact_form_container clearfix\" data-form_unique_num=\"3\" data-form_unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" data-redirect_url=\"/thank-you/\">\n				\n				\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"http://www.capitalbookkeepingco.com/index.php/?s=captcha\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_9 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_name_3\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_3\" class=\"input\" value=\"\" name=\"et_pb_contact_name_3\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_10 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_email_3\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_3\" class=\"input\" value=\"\" name=\"et_pb_contact_email_3\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_11 et_pb_contact_field_last\" data-id=\"company\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_company_3\" class=\"et_pb_contact_form_label\">Company Name</label>\n				<input type=\"text\" id=\"et_pb_contact_company_3\" class=\"input\" value=\"\" name=\"et_pb_contact_company_3\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"company\" placeholder=\"Company Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_12 et_pb_contact_field_last\" data-id=\"subject\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_subject_3\" class=\"et_pb_contact_form_label\">Subject</label>\n				<input type=\"text\" id=\"et_pb_contact_subject_3\" class=\"input\" value=\"\" name=\"et_pb_contact_subject_3\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"subject\" placeholder=\"Subject\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_13 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_message_3\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_3\" id=\"et_pb_contact_message_3\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_3\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\">Submit</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-3\" name=\"_wpnonce-et-pb-contact-form-submitted-3\" value=\"b0e9d66b22\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/index.php/?s=captcha\" />\n					</form>\n				</div>\n			</div>\n			\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_7 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">We Handle Your Finances So You Can Run Your Business</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img width=\"598\" height=\"527\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg\" alt=\"\" title=\"\" srcset=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg 598w, https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2-480x423.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 598px, 100vw\" class=\"wp-image-200\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">General bookkeeping (Corporate, Proprietorships &amp; Personal)</p>\n<p>Account set up &#8211; SAGE/QuickBooks<br />\nAccounts Receivable <br />\nAccounts Payable (Paying Invoices)<br />\nBank and credit card reconciliations<br />\nMonthly &amp; yearly financial statement preparations<br />\nSales tax reconciliation and remittance<br />\nJob Costing<br />\nBudgeting<br />\nGrant application assistance<br />\nFinancial report analysis</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img width=\"800\" height=\"400\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" alt=\"\" title=\"\" srcset=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg 800w, https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35-480x240.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 800px, 100vw\" class=\"wp-image-12\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Payroll</p>\n<p>Payroll preparation<br />\nCRA Receiver General tax payments<br />\nGroup health benefits administration<br />\nWorkers compensation preparation &amp; submission<br />\nT4, T4A, T5018 Tax Slip Preparation</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img width=\"679\" height=\"400\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" alt=\"\" title=\"calculator-g07b5bc4da_640\" srcset=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg 679w, https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640-480x283.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 679px, 100vw\" class=\"wp-image-70\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Industry Experience</p>\n<p>Non for profit <br />\nConstruction<br />\nRetail<br />\nMedical (Chiropractic)<br />\nAgricultural</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_8 et_pb_specialty_fullwidth et_section_specialty\" >\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_15    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img width=\"589\" height=\"144\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" alt=\"\" title=\"\" srcset=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png 589w, https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-480x117.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 589px, 100vw\" class=\"wp-image-52\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"> No Client is Too Big or Small<br />\nCapital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over 40 combined years of experience servicing business of all sizes and industry types. Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_16   et_pb_specialty_column  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_row_inner et_pb_row_inner_0 et_pb_gutters3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_0 et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Get Started<br />\nPaperwork weighing you down?<br />\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_dark\" href=\"\">Our Services</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n			</div> <!-- .et_pb_column -->\n				</div>\n				\n			</div><div class=\"et_pb_section et_pb_section_9 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_4\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img width=\"106\" height=\"33\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" alt=\"\" title=\"\" class=\"wp-image-16\" /></span>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_5\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img width=\"162\" height=\"50\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" alt=\"\" title=\"\" class=\"wp-image-17\" /></span>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_6\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"116\" height=\"53\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" alt=\"\" title=\"\" class=\"wp-image-18\" /></span>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_7\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"135\" height=\"42\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" alt=\"\" title=\"\" class=\"wp-image-19\" /></span>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_10 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_10 et_pb_gutters3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Join Us<br />\nOur clients relay on us to have integrity and transparency.<br />\n&nbsp;</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_11 et_pb_specialty_fullwidth et_pb_with_background et_section_specialty\" >\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_22    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Contact Us<br />\n&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_2 et_clickable  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><a href=\"mailto:capitalbookkeepingcompany@gmail.com\" target=\"_blank\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon\"></span></span></a></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><a href=\"mailto:capitalbookkeepingcompany@gmail.com\" target=\"_blank\">Email</a></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_3 et_clickable  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><a href=\"tel:250-707-8290\" target=\"_blank\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon\"></span></span></a></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><a href=\"tel:250-707-8290\" target=\"_blank\">250-707-8290</a></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_4  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon\"></span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>M-F: 9am-5pm, S-S: Closed</span></h4>\n						\n					</div>\n				</div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_23   et_pb_specialty_column  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_row_inner et_pb_row_inner_1 et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_1 et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Trustworthy<br />\nWithout trust we don’t truly collaborate; we merely coordinate or, at best, cooperate.  It is trust that transforms a group of people into a team.”  We would like you to join our team.</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Experienced<br />\nWe have over 40 years experience in helping our clients with bookkeeping, payroll and industry experience</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n			</div> <!-- .et_pb_column -->\n				</div>\n				\n			</div></p>\n'),(12,8,'_et_pb_truncate_post_date','2022-05-11 08:01:11'),(13,8,'_et_pb_old_content',''),(14,8,'_edit_lock','1646924324:1'),(15,10,'_wp_attached_file','2021/12/Accountant-Image-33.jpg'),(16,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:864;s:4:\"file\";s:31:\"2021/12/Accountant-Image-33.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-33-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-33-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-33-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:\"Accountant-Image-33-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-33-1536x691.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-33-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-33-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-33-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-33-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-33-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-33-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-33-1280x576.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-33-980x441.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-33-480x216.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17,11,'_wp_attached_file','2021/12/Accountant-Image-36.jpg'),(18,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:31:\"2021/12/Accountant-Image-36.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-36-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-36-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:\"Accountant-Image-36-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-36-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-36-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-36-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-36-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-36-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19,12,'_wp_attached_file','2021/12/Accountant-Image-35.jpg'),(20,12,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:31:\"2021/12/Accountant-Image-35.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-35-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-35-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:\"Accountant-Image-35-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-35-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-35-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-35-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-35-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-35-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21,13,'_wp_attached_file','2021/12/Accountant-Image-34.jpg'),(22,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:31:\"2021/12/Accountant-Image-34.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-34-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-34-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:\"Accountant-Image-34-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-34-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-34-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-34-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-34-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-34-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23,14,'_wp_attached_file','2021/12/Accountant-Image-02.jpg'),(24,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:696;s:4:\"file\";s:31:\"2021/12/Accountant-Image-02.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-02-300x261.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-02-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:\"Accountant-Image-02-768x668.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-02-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-02-480x418.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:418;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25,15,'_wp_attached_file','2021/12/accountant-01.jpg'),(26,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:727;s:4:\"file\";s:25:\"2021/12/accountant-01.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"accountant-01-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"accountant-01-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:25:\"accountant-01-768x558.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:558;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"accountant-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"accountant-01-1000x675.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"accountant-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"accountant-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"accountant-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:25:\"accountant-01-980x712.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:25:\"accountant-01-480x349.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27,16,'_wp_attached_file','2021/12/logo_04.png'),(28,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:106;s:6:\"height\";i:33;s:4:\"file\";s:19:\"2021/12/logo_04.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29,17,'_wp_attached_file','2021/12/logo_03.png'),(30,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:162;s:6:\"height\";i:50;s:4:\"file\";s:19:\"2021/12/logo_03.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo_03-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;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:{}}}'),(31,18,'_wp_attached_file','2021/12/logo_02.png'),(32,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:116;s:6:\"height\";i:53;s:4:\"file\";s:19:\"2021/12/logo_02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(33,19,'_wp_attached_file','2021/12/logo_01.png'),(34,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:42;s:4:\"file\";s:19:\"2021/12/logo_01.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(35,20,'_wp_attached_file','2021/12/Accountant-Image-38.png'),(36,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2696;s:6:\"height\";i:1861;s:4:\"file\";s:31:\"2021/12/Accountant-Image-38.png\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-38-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-38-1024x707.png\";s:5:\"width\";i:1024;s:6:\"height\";i:707;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-38-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-38-768x530.png\";s:5:\"width\";i:768;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"Accountant-Image-38-1536x1060.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1060;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"Accountant-Image-38-2048x1414.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1414;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-38-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-38-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-38-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-38-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-38-1080x746.png\";s:5:\"width\";i:1080;s:6:\"height\";i:746;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-38-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Accountant-Image-38-2696x1800.png\";s:5:\"width\";i:2696;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-38-1280x884.png\";s:5:\"width\";i:1280;s:6:\"height\";i:884;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-38-980x676.png\";s:5:\"width\";i:980;s:6:\"height\";i:676;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-38-480x331.png\";s:5:\"width\";i:480;s:6:\"height\";i:331;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:{}}}'),(37,21,'_wp_attached_file','2021/12/Accountant-Image-39.png'),(38,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2696;s:6:\"height\";i:1861;s:4:\"file\";s:31:\"2021/12/Accountant-Image-39.png\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-39-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-39-1024x707.png\";s:5:\"width\";i:1024;s:6:\"height\";i:707;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-39-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-39-768x530.png\";s:5:\"width\";i:768;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"Accountant-Image-39-1536x1060.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1060;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"Accountant-Image-39-2048x1414.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1414;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-39-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-39-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-39-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-39-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-39-1080x746.png\";s:5:\"width\";i:1080;s:6:\"height\";i:746;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-39-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"Accountant-Image-39-2696x1800.png\";s:5:\"width\";i:2696;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:32:\"Accountant-Image-39-1280x884.png\";s:5:\"width\";i:1280;s:6:\"height\";i:884;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-39-980x676.png\";s:5:\"width\";i:980;s:6:\"height\";i:676;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Accountant-Image-39-480x331.png\";s:5:\"width\";i:480;s:6:\"height\";i:331;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:{}}}'),(43,8,'_et_pb_enable_shortcode_tracking',''),(42,8,'_et_pb_ab_subjects',''),(41,8,'_et_pb_built_for_post_type','page'),(44,8,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"8\" /]'),(45,8,'_et_pb_custom_css',''),(46,8,'_et_pb_gutter_width','3'),(48,8,'_global_colors_info','{}'),(49,8,'_et_builder_version','VB|Divi|4.14.3'),(50,8,'_et_pb_show_page_creation','off'),(194,89,'_edit_last','2'),(195,89,'_wp_page_template','default'),(66,33,'_wp_attached_file','2021/12/Capital-Bookkeeping-Company-.png'),(67,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:500;s:4:\"file\";s:40:\"2021/12/Capital-Bookkeeping-Company-.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company--300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company--768x427.png\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company--400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company--400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company--510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company--400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company--480x267.png\";s:5:\"width\";i:480;s:6:\"height\";i:267;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:{}}}'),(202,89,'_et_pb_truncate_post_date',''),(203,89,'_et_pb_old_content',''),(204,89,'_edit_lock','1693346676:4'),(205,89,'_et_pb_built_for_post_type','page'),(206,89,'_et_pb_ab_subjects',''),(207,89,'_et_pb_enable_shortcode_tracking',''),(1605,8,'_yoast_wpseo_focuskw','Bookkeepers'),(196,89,'_et_pb_post_hide_nav','default'),(197,89,'_et_pb_page_layout','et_right_sidebar'),(198,89,'_et_pb_side_nav','off'),(199,89,'_et_pb_use_builder','on'),(200,89,'_et_pb_first_image',''),(201,89,'_et_pb_truncate_post',''),(177,78,'_et_builder_version','VB|Divi|4.14.2'),(817,242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:752;s:4:\"file\";s:34:\"2022/01/review-geae8de4df_1280.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"review-geae8de4df_1280-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"review-geae8de4df_1280-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"review-geae8de4df_1280-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:34:\"review-geae8de4df_1280-768x451.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"review-geae8de4df_1280-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"review-geae8de4df_1280-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"review-geae8de4df_1280-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"review-geae8de4df_1280-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"review-geae8de4df_1280-1080x635.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"review-geae8de4df_1280-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"review-geae8de4df_1280-980x576.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"review-geae8de4df_1280-480x282.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(171,78,'_et_pb_enable_shortcode_tracking',''),(172,78,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"78\" /]'),(173,78,'_et_pb_custom_css',''),(174,78,'_et_pb_gutter_width','3'),(815,237,'_yoast_wpseo_content_score','90'),(812,237,'_global_colors_info','{}'),(813,237,'_et_builder_version','VB|Divi|4.14.5'),(814,237,'_et_pb_show_page_creation','off'),(816,242,'_wp_attached_file','2022/01/review-geae8de4df_1280.jpg'),(938,306,'_wp_attached_file','2022/01/accounts-receivable.jpg'),(939,306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:31:\"2022/01/accounts-receivable.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"accounts-receivable-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"accounts-receivable-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"accounts-receivable-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"accounts-receivable-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"accounts-receivable-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"accounts-receivable-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"accounts-receivable-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(508,171,'_wp_attached_file','2021/12/cropped-Capital-Bookkeeping-Company1.png'),(509,171,'_wp_attachment_context','site-icon'),(510,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:48:\"2021/12/cropped-Capital-Bookkeeping-Company1.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:48:\"cropped-Capital-Bookkeeping-Company1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:46:\"cropped-Capital-Bookkeeping-Company1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(688,221,'_edit_lock','1692818087:2'),(689,221,'_wp_page_template','page-template-blank.php'),(690,221,'_et_pb_post_hide_nav','default'),(691,221,'_et_pb_page_layout','et_right_sidebar'),(692,221,'_et_pb_side_nav','off'),(693,221,'_et_pb_use_builder','on'),(551,195,'_et_autogenerated_title','0'),(552,195,'_et_default','1'),(553,195,'_et_enabled','1'),(554,195,'_et_header_layout_id','152'),(555,195,'_et_header_layout_enabled','1'),(556,195,'_et_body_layout_id','0'),(557,195,'_et_body_layout_enabled','1'),(558,195,'_et_footer_layout_id','185'),(559,195,'_et_footer_layout_enabled','1'),(564,187,'_et_theme_builder_marked_as_unused','2021-12-16 20:40:14'),(565,159,'_et_theme_builder_marked_as_unused','2021-12-16 20:40:14'),(694,221,'_et_pb_first_image',''),(695,221,'_et_pb_truncate_post',''),(696,221,'_et_pb_truncate_post_date',''),(697,221,'_et_pb_old_content',''),(698,221,'_yoast_wpseo_estimated-reading-time-minutes',''),(699,224,'_wp_attached_file','2021/12/uC.jpg'),(700,224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1181;s:4:\"file\";s:14:\"2021/12/uC.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"uC-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"uC-1024x630.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"uC-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:14:\"uC-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"uC-1536x945.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:945;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:14:\"uC-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:15:\"uC-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:14:\"uC-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:14:\"uC-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:15:\"uC-1080x664.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:14:\"uC-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:15:\"uC-1280x787.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:787;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:14:\"uC-980x603.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:603;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:14:\"uC-480x295.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(522,185,'_et_pb_use_builder','on'),(524,187,'_et_autogenerated_title','0'),(525,187,'_et_default','1'),(526,187,'_et_enabled','1'),(527,187,'_et_header_layout_id','152'),(528,187,'_et_header_layout_enabled','1'),(529,187,'_et_body_layout_id','0'),(530,187,'_et_body_layout_enabled','1'),(531,187,'_et_footer_layout_id','185'),(532,187,'_et_footer_layout_enabled','1'),(158,78,'_edit_last','1'),(159,78,'_wp_page_template','page-template-blank.php'),(160,78,'_et_pb_post_hide_nav','default'),(161,78,'_et_pb_page_layout','et_right_sidebar'),(162,78,'_et_pb_side_nav','off'),(163,78,'_et_pb_use_builder','on'),(164,78,'_et_pb_first_image',''),(165,78,'_et_pb_truncate_post',''),(166,78,'_et_pb_truncate_post_date',''),(167,78,'_et_pb_old_content',''),(168,78,'_edit_lock','1692818048:2'),(169,78,'_et_pb_built_for_post_type','page'),(170,78,'_et_pb_ab_subjects',''),(152,76,'_et_pb_use_builder','on'),(153,76,'_et_pb_show_page_creation','on'),(176,78,'_global_colors_info','{}'),(129,70,'_wp_attached_file','2021/12/calculator-g07b5bc4da_640.jpg'),(130,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:679;s:6:\"height\";i:400;s:4:\"file\";s:37:\"2021/12/calculator-g07b5bc4da_640.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"calculator-g07b5bc4da_640-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"calculator-g07b5bc4da_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"calculator-g07b5bc4da_640-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"calculator-g07b5bc4da_640-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"calculator-g07b5bc4da_640-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"calculator-g07b5bc4da_640-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"calculator-g07b5bc4da_640-480x283.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(87,44,'_wp_attached_file','2021/12/Capital-Bookkeeping-Co.jpg'),(88,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1360;s:6:\"height\";i:907;s:4:\"file\";s:34:\"2021/12/Capital-Bookkeeping-Co.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-Co-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:35:\"Capital-Bookkeeping-Co-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-Co-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:34:\"Capital-Bookkeeping-Co-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-Co-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Capital-Bookkeeping-Co-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-Co-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-Co-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Capital-Bookkeeping-Co-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-Co-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"Capital-Bookkeeping-Co-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-Co-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-Co-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:174:\"Close up view of bookkeeper or financial inspector hands making report, calculating or checking balance. Home finances, investment, economy, saving money or insurance concept\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:67:\"Copyright (c) 2017 ldutko/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:63:\"Close,Up,View,Of,Bookkeeper,Or,Financial,Inspector,Hands,Making\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"calculation,commercial,education,accountant,salary,professional,\";}}}'),(97,49,'_wp_attached_file','2021/12/Capital-Bookkeeping-Company.png'),(98,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:589;s:6:\"height\";i:144;s:4:\"file\";s:39:\"2021/12/Capital-Bookkeeping-Company.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Capital-Bookkeeping-Company-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Capital-Bookkeeping-Company-150x144.png\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Capital-Bookkeeping-Company-400x144.png\";s:5:\"width\";i:400;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Capital-Bookkeeping-Company-400x144.png\";s:5:\"width\";i:400;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Capital-Bookkeeping-Company-510x144.png\";s:5:\"width\";i:510;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Capital-Bookkeeping-Company-400x144.png\";s:5:\"width\";i:400;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Capital-Bookkeeping-Company-480x117.png\";s:5:\"width\";i:480;s:6:\"height\";i:117;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:{}}}'),(103,52,'_wp_attached_file','2021/12/Capital-Bookkeeping-Company1.png'),(104,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:589;s:6:\"height\";i:144;s:4:\"file\";s:40:\"2021/12/Capital-Bookkeeping-Company1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Capital-Bookkeeping-Company1-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company1-150x144.png\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company1-400x144.png\";s:5:\"width\";i:400;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company1-400x144.png\";s:5:\"width\";i:400;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company1-510x144.png\";s:5:\"width\";i:510;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company1-400x144.png\";s:5:\"width\";i:400;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Capital-Bookkeeping-Company1-480x117.png\";s:5:\"width\";i:480;s:6:\"height\";i:117;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:{}}}'),(208,89,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"89\" /]'),(209,89,'_et_pb_custom_css',''),(210,89,'_et_pb_gutter_width','3'),(664,89,'_yoast_wpseo_content_score','60'),(212,89,'_global_colors_info','{}'),(213,89,'_et_builder_version','VB|Divi|4.19.2'),(215,89,'_et_pb_show_page_creation','off'),(506,170,'_wp_attached_file','2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg'),(507,170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:73:\"2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"finance-accounting-concept-business-woman-working-desk-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:67:\"finance-accounting-concept-business-woman-working-desk-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"finance-accounting-concept-business-woman-working-desk-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:66:\"finance-accounting-concept-business-woman-working-desk-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:68:\"finance-accounting-concept-business-woman-working-desk-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:68:\"finance-accounting-concept-business-woman-working-desk-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:66:\"finance-accounting-concept-business-woman-working-desk-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:67:\"finance-accounting-concept-business-woman-working-desk-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:66:\"finance-accounting-concept-business-woman-working-desk-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:66:\"finance-accounting-concept-business-woman-working-desk-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:67:\"finance-accounting-concept-business-woman-working-desk-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:66:\"finance-accounting-concept-business-woman-working-desk-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:68:\"finance-accounting-concept-business-woman-working-desk-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:67:\"finance-accounting-concept-business-woman-working-desk-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:66:\"finance-accounting-concept-business-woman-working-desk-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:66:\"finance-accounting-concept-business-woman-working-desk-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:62:\"finance and accounting concept. business woman working on desk\";s:17:\"created_timestamp\";s:10:\"1584375826\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:62:\"finance and accounting concept. business woman working on desk\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:7:\"finance\";i:1;s:6:\"office\";i:2;s:7:\"working\";i:3;s:8:\"business\";i:4;s:8:\"computer\";i:5;s:4:\"desk\";i:6;s:3:\"man\";i:7;s:4:\"work\";i:8;s:7:\"concept\";i:9;s:10:\"accounting\";i:10;s:9:\"calculate\";i:11;s:5:\"chart\";i:12;s:8:\"document\";i:13;s:7:\"account\";i:14;s:10:\"calculator\";i:15;s:4:\"data\";i:16;s:3:\"tax\";i:17;s:11:\"businessman\";i:18;s:14:\"business woman\";i:19;s:13:\"communication\";i:20;s:6:\"laptop\";i:21;s:6:\"person\";i:22;s:10:\"technology\";i:23;s:5:\"using\";i:24;s:6:\"object\";i:25;s:5:\"woman\";i:26;s:7:\"analyze\";i:27;s:9:\"analyzing\";i:28;s:10:\"bookkeeper\";i:29;s:13:\"brainstorming\";i:30;s:11:\"calculating\";i:31;s:11:\"calculation\";i:32;s:10:\"connecting\";i:33;s:11:\"cooperation\";i:34;s:8:\"designer\";i:35;s:7:\"diagram\";i:36;s:7:\"discuss\";i:37;s:10:\"discussion\";i:38;s:8:\"earnings\";i:39;s:9:\"expertise\";i:40;s:7:\"figures\";i:41;s:5:\"graph\";i:42;s:7:\"graphic\";i:43;s:15:\"human resources\";i:44;s:11:\"illustrator\";i:45;s:8:\"keyboard\";i:46;s:4:\"list\";i:47;s:10:\"management\";i:48;s:12:\"mathematical\";i:49;s:8:\"mobility\";}}s:14:\"original_image\";s:58:\"finance-accounting-concept-business-woman-working-desk.jpg\";}'),(1946,495,'_oembed_time_b9b199972e4684800486a598b6284a72','1647185101'),(1947,495,'_oembed_ee4d843d303fef3a18d0cb6b596d1d1e','<blockquote class=\"wp-embedded-content\" data-secret=\"HNa8J4e56H\"><a href=\"https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Essential Biz Directory\" src=\"https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=W0VKRmixMV#?secret=HNa8J4e56H\" data-secret=\"HNa8J4e56H\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(219,94,'_edit_last','2'),(220,94,'_wp_page_template','default'),(221,94,'_et_pb_post_hide_nav','default'),(222,94,'_et_pb_page_layout','et_right_sidebar'),(223,94,'_et_pb_side_nav','off'),(224,94,'_et_pb_use_builder','on'),(225,94,'_et_pb_first_image',''),(226,94,'_et_pb_truncate_post',''),(227,94,'_et_pb_truncate_post_date',''),(228,94,'_et_pb_old_content',''),(229,94,'_edit_lock','1692886978:2'),(230,94,'_et_pb_built_for_post_type','page'),(231,94,'_et_pb_ab_subjects',''),(232,94,'_et_pb_enable_shortcode_tracking',''),(233,94,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"94\" /]'),(234,94,'_et_pb_custom_css',''),(235,94,'_et_pb_gutter_width','3'),(237,94,'_global_colors_info','{}'),(238,94,'_et_builder_version','VB|Divi|4.14.5'),(239,94,'_et_pb_show_page_creation','off'),(358,134,'_menu_item_type','post_type'),(359,134,'_menu_item_menu_item_parent','0'),(360,134,'_menu_item_object_id','89'),(361,134,'_menu_item_object','page'),(362,134,'_menu_item_target',''),(363,134,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(364,134,'_menu_item_xfn',''),(365,134,'_menu_item_url',''),(367,135,'_menu_item_type','post_type'),(368,135,'_menu_item_menu_item_parent','0'),(369,135,'_menu_item_object_id','104'),(370,135,'_menu_item_object','page'),(371,135,'_menu_item_target',''),(372,135,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(373,135,'_menu_item_xfn',''),(374,135,'_menu_item_url',''),(376,136,'_menu_item_type','post_type'),(377,136,'_menu_item_menu_item_parent','0'),(378,136,'_menu_item_object_id','94'),(379,136,'_menu_item_object','page'),(380,136,'_menu_item_target',''),(381,136,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(382,136,'_menu_item_xfn',''),(383,136,'_menu_item_url',''),(1391,444,'_wp_attached_file','2022/01/Cathe.jpg'),(1392,444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1360;s:6:\"height\";i:1088;s:4:\"file\";s:17:\"2022/01/Cathe.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Cathe-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"Cathe-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Cathe-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:17:\"Cathe-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"Cathe-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"Cathe-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"Cathe-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"Cathe-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"Cathe-1080x864.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"Cathe-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:19:\"Cathe-1280x1024.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:17:\"Cathe-980x784.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:17:\"Cathe-480x384.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(687,221,'_edit_last','1'),(1945,495,'_oembed_b9b199972e4684800486a598b6284a72','<blockquote class=\"wp-embedded-content\" data-secret=\"xzNaXfVgEg\"><a href=\"https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Elite Business Listing\" src=\"https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=GTQS4t2TZA#?secret=xzNaXfVgEg\" data-secret=\"xzNaXfVgEg\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(539,185,'_et_pb_built_for_post_type','page'),(540,185,'_et_pb_ab_subjects',''),(541,185,'_et_pb_enable_shortcode_tracking',''),(542,185,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"185\" /]'),(543,185,'_et_pb_custom_css',''),(544,185,'_et_pb_gutter_width','3'),(545,185,'_thumbnail_id','0'),(546,185,'_global_colors_info','{}'),(547,185,'_et_pb_first_image',''),(548,185,'_et_pb_truncate_post',''),(549,185,'_et_pb_truncate_post_date',''),(550,185,'_et_builder_version','VB|Divi|4.22.1'),(1923,495,'_oembed_time_0cea9b193ad31490d0a3ce0048ac7dc0','1647185077'),(1924,495,'_oembed_4d73f6670c5e3b765c58f0a4d42f703f','<blockquote class=\"wp-embedded-content\" data-secret=\"GJEQLqoVGB\"><a href=\"https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Casey Biz Listings\" src=\"https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Q3wKLrCH3t#?secret=GJEQLqoVGB\" data-secret=\"GJEQLqoVGB\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1925,495,'_oembed_time_4d73f6670c5e3b765c58f0a4d42f703f','1647185078'),(1926,495,'_oembed_592a822effe879058e97b99b02abb95e','<blockquote class=\"wp-embedded-content\" data-secret=\"wMeZd1uOtI\"><a href=\"https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Casey Local Directory\" src=\"https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=jgaOJCsFEs#?secret=wMeZd1uOtI\" data-secret=\"wMeZd1uOtI\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1303,109,'_et_builder_dynamic_assets_loading_attr_threshold','9'),(2018,495,'_oembed_time_7d10baa1f4d52121969f97b6862a6391','1647185152'),(2019,495,'_oembed_941f46b6af58e05cc0e44ed8fa7437d2','<blockquote class=\"wp-embedded-content\" data-secret=\"hyoRQI4wjY\"><a href=\"https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Biz Mentions\" src=\"https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=JiwNm3ZVJu#?secret=hyoRQI4wjY\" data-secret=\"hyoRQI4wjY\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(416,144,'_wp_attached_file','2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg'),(417,144,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:73:\"2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"workplace-team-cooperation-businesswoman-laptop-office-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:67:\"workplace-team-cooperation-businesswoman-laptop-office-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"workplace-team-cooperation-businesswoman-laptop-office-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:66:\"workplace-team-cooperation-businesswoman-laptop-office-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:68:\"workplace-team-cooperation-businesswoman-laptop-office-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:68:\"workplace-team-cooperation-businesswoman-laptop-office-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:66:\"workplace-team-cooperation-businesswoman-laptop-office-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:67:\"workplace-team-cooperation-businesswoman-laptop-office-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:66:\"workplace-team-cooperation-businesswoman-laptop-office-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:66:\"workplace-team-cooperation-businesswoman-laptop-office-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:67:\"workplace-team-cooperation-businesswoman-laptop-office-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:66:\"workplace-team-cooperation-businesswoman-laptop-office-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:68:\"workplace-team-cooperation-businesswoman-laptop-office-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:67:\"workplace-team-cooperation-businesswoman-laptop-office-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:66:\"workplace-team-cooperation-businesswoman-laptop-office-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:66:\"workplace-team-cooperation-businesswoman-laptop-office-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:116:\"Business concept. Business people discussing the charts and graphs showing the results of their successful teamwork.\";s:17:\"created_timestamp\";s:10:\"1494386919\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:9:\"paperwork\";i:1;s:7:\"meeting\";i:2;s:9:\"workplace\";i:3;s:8:\"business\";i:4;s:9:\"economics\";i:5;s:8:\"teamwork\";i:6;s:5:\"hands\";i:7;s:9:\"financial\";i:8;s:6:\"report\";i:9;s:9:\"corporate\";i:10;s:7:\"finance\";i:11;s:4:\"male\";i:12;s:11:\"cooperation\";i:13;s:10:\"accounting\";i:14;s:7:\"closeup\";i:15;s:5:\"paper\";i:16;s:7:\"success\";i:17;s:10:\"statistics\";i:18;s:5:\"group\";i:19;s:8:\"briefing\";i:20;s:4:\"team\";i:21;s:6:\"female\";i:22;s:6:\"office\";i:23;s:12:\"professional\";i:24;s:6:\"people\";i:25;s:4:\"plan\";i:26;s:9:\"executive\";i:27;s:5:\"chart\";i:28;s:4:\"work\";i:29;s:7:\"analyst\";i:30;s:7:\"concept\";i:31;s:10:\"consulting\";i:32;s:10:\"discussing\";i:33;s:7:\"account\";i:34;s:7:\"talking\";i:35;s:7:\"project\";i:36;s:5:\"table\";i:37;s:6:\"laptop\";i:38;s:10:\"discussion\";i:39;s:10:\"accountant\";i:40;s:10:\"explaining\";i:41;s:11:\"businessman\";i:42;s:6:\"invest\";i:43;s:7:\"manager\";i:44;s:3:\"job\";i:45;s:13:\"businesswoman\";i:46;s:7:\"results\";i:47;s:8:\"research\";i:48;s:6:\"person\";}}s:14:\"original_image\";s:58:\"workplace-team-cooperation-businesswoman-laptop-office.jpg\";}'),(245,104,'_edit_last','2'),(246,104,'_wp_page_template','default'),(247,104,'_et_pb_post_hide_nav','default'),(248,104,'_et_pb_page_layout','et_right_sidebar'),(249,104,'_et_pb_side_nav','off'),(250,104,'_et_pb_use_builder','on'),(251,104,'_et_pb_first_image',''),(252,104,'_et_pb_truncate_post',''),(253,104,'_et_pb_truncate_post_date',''),(254,104,'_et_pb_old_content',''),(255,104,'_edit_lock','1693237758:2'),(256,104,'_et_pb_built_for_post_type','page'),(257,104,'_et_pb_ab_subjects',''),(258,104,'_et_pb_enable_shortcode_tracking',''),(259,104,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"104\" /]'),(260,104,'_et_pb_custom_css',''),(261,104,'_et_pb_gutter_width','3'),(1631,104,'_yoast_wpseo_content_score','90'),(263,104,'_global_colors_info','{}'),(264,104,'_et_builder_version','VB|Divi|4.19.2'),(265,104,'_et_pb_show_page_creation','off'),(410,137,'_thumbnail_id','0'),(534,189,'_wp_attached_file','2021/12/shopping-budgeting-financial-concept.jpg'),(535,189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:48:\"2021/12/shopping-budgeting-financial-concept.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"shopping-budgeting-financial-concept-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:49:\"shopping-budgeting-financial-concept-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"shopping-budgeting-financial-concept-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:48:\"shopping-budgeting-financial-concept-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"shopping-budgeting-financial-concept-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"shopping-budgeting-financial-concept-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"shopping-budgeting-financial-concept-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"shopping-budgeting-financial-concept-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"shopping-budgeting-financial-concept-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:49:\"shopping-budgeting-financial-concept-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"shopping-budgeting-financial-concept-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:49:\"shopping-budgeting-financial-concept-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:48:\"shopping-budgeting-financial-concept-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"shopping-budgeting-financial-concept-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:20:\"rawpixel.com / Nunny\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:40:\"Shopping and budgeting financial concept\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:13:\"Rawpixel Ltd.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:40:\"Shopping and budgeting financial concept\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:10:\"accounting\";i:1;s:7:\"banking\";i:2;s:8:\"banknote\";i:3;s:4:\"bill\";i:4;s:8:\"business\";i:5;s:11:\"businessman\";i:6;s:6:\"buying\";i:7;s:10:\"calculator\";i:8;s:4:\"cash\";i:9;s:10:\"copy space\";i:10;s:9:\"copyspace\";i:11;s:8:\"currency\";i:12;s:6:\"design\";i:13;s:15:\"design resource\";i:14;s:12:\"design space\";i:15;s:6:\"dollar\";i:16;s:11:\"dollar sign\";i:17;s:12:\"downloadable\";i:18;s:7:\"earning\";i:19;s:7:\"economy\";i:20;s:7:\"finance\";i:21;s:9:\"financial\";i:22;s:4:\"flow\";i:23;s:4:\"fund\";i:24;s:7:\"graphic\";i:25;s:4:\"hand\";i:26;s:7:\"holding\";i:27;s:6:\"income\";i:28;s:9:\"investing\";i:29;s:10:\"investment\";i:30;s:3:\"man\";i:31;s:5:\"money\";i:32;s:3:\"pay\";i:33;s:7:\"payment\";i:34;s:6:\"people\";i:35;s:5:\"photo\";i:36;s:9:\"printable\";i:37;s:6:\"profit\";i:38;s:8:\"purchase\";i:39;s:10:\"purchasing\";i:40;s:7:\"receipt\";i:41;s:4:\"rich\";i:42;s:6:\"salary\";i:43;s:6:\"saving\";i:44;s:4:\"suit\";i:45;s:10:\"text space\";i:46;s:5:\"wages\";i:47;s:6:\"wealth\";i:48;s:5:\"woman\";}}}'),(1132,373,'_menu_item_url',''),(1131,373,'_menu_item_xfn',''),(1130,373,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1129,373,'_menu_item_target',''),(1128,373,'_menu_item_object','page'),(1127,373,'_menu_item_object_id','94'),(1126,373,'_menu_item_menu_item_parent','0'),(1125,373,'_menu_item_type','post_type'),(340,132,'_menu_item_type','post_type'),(341,132,'_menu_item_menu_item_parent','0'),(342,132,'_menu_item_object_id','109'),(343,132,'_menu_item_object','page'),(344,132,'_menu_item_target',''),(345,132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(346,132,'_menu_item_xfn',''),(347,132,'_menu_item_url',''),(349,133,'_menu_item_type','post_type'),(350,133,'_menu_item_menu_item_parent','0'),(351,133,'_menu_item_object_id','118'),(352,133,'_menu_item_object','page'),(353,133,'_menu_item_target',''),(354,133,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(355,133,'_menu_item_xfn',''),(356,133,'_menu_item_url',''),(270,109,'_edit_last','2'),(271,109,'_wp_page_template','default'),(272,109,'_et_pb_post_hide_nav','default'),(273,109,'_et_pb_page_layout','et_right_sidebar'),(274,109,'_et_pb_side_nav','off'),(275,109,'_et_pb_use_builder','on'),(276,109,'_et_pb_first_image',''),(277,109,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_0 et_pb_fullwidth_section et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<section class=\"et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_0 et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_fullwidth_header_container left\">\n					<div class=\"header-content-container center\">\n					<div class=\"header-content\">\n						\n						<h1 class=\"et_pb_module_header\">Bookkeeping Solutions</h1>\n						<span class=\"et_pb_fullwidth_header_subhead\">Let Us Take A look</span>\n						<div class=\"et_pb_header_content_wrapper\"></div>\n						<a class=\"et_pb_button et_pb_more_button et_pb_button_one\" href=\"/contact-us/\">Contact Us</a>\n					</div>\n				</div>\n					\n				</div>\n				<div class=\"et_pb_fullwidth_header_overlay\"></div>\n				<div class=\"et_pb_fullwidth_header_scroll\"></div>\n			</section>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">We Keep Your Accounts Up To Date So You Can Focus On Your Business<br />\n&nbsp;</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_2 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Our Team</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2 et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_3_5 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_team_member et_pb_team_member_0 clearfix  et_pb_bg_layout_light et_pb_team_member_no_image\">\n				\n				\n				\n				\n				\n				<div class=\"et_pb_team_member_description\">\n					<h4 class=\"et_pb_module_header\">Trena Smith</h4>\n					<p class=\"et_pb_member_position\">Founder/Bookkeeper</p>\n					\n					\n				</div>\n			</div><div class=\"et_pb_module et_pb_team_member et_pb_team_member_1 clearfix  et_pb_bg_layout_light et_pb_team_member_no_image\">\n				\n				\n				\n				\n				\n				<div class=\"et_pb_team_member_description\">\n					\n					\n					<div>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.<br />\nTrena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.<br />\nWhen Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.<br />\n&nbsp;</div>\n					\n				</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_2_5 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img width=\"2560\" height=\"2048\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/04/Trena-Close-use-this-photo-1-scaled.jpg\" alt=\"\" title=\"Trena - Close use this photo\" srcset=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/04/Trena-Close-use-this-photo-1-scaled.jpg 2560w, https://capitalbookkeepingco.com/wp-content/uploads/2022/04/Trena-Close-use-this-photo-1-1280x1024.jpg 1280w, https://capitalbookkeepingco.com/wp-content/uploads/2022/04/Trena-Close-use-this-photo-1-980x784.jpg 980w, https://capitalbookkeepingco.com/wp-content/uploads/2022/04/Trena-Close-use-this-photo-1-480x384.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-820\" /></span>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_3 et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_2_5 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img width=\"1360\" height=\"1088\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" alt=\"\" title=\"\" srcset=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg 1360w, https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe-1280x1024.jpg 1280w, https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe-980x784.jpg 980w, https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe-480x384.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1360px, 100vw\" class=\"wp-image-444\" /></span>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_3_5 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_team_member et_pb_team_member_2 clearfix  et_pb_bg_layout_light et_pb_team_member_no_image\">\n				\n				\n				\n				\n				\n				<div class=\"et_pb_team_member_description\">\n					<h4 class=\"et_pb_module_header\">Julie Belgrove </h4>\n					<p class=\"et_pb_member_position\">Team Manager/HR/Bookkeeper</p>\n					\n					\n				</div>\n			</div><div class=\"et_pb_module et_pb_team_member et_pb_team_member_3 clearfix  et_pb_bg_layout_light et_pb_team_member_no_image\">\n				\n				\n				\n				\n				\n				<div class=\"et_pb_team_member_description\">\n					\n					\n					<div>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.<br />\nWhen Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</div>\n					\n				</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4 et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_3_5 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_team_member et_pb_team_member_4 clearfix  et_pb_bg_layout_light et_pb_team_member_no_image\">\n				\n				\n				\n				\n				\n				<div class=\"et_pb_team_member_description\">\n					<h4 class=\"et_pb_module_header\">Cathie MacConnell </h4>\n					<p class=\"et_pb_member_position\">Bookkeeper</p>\n					\n					\n				</div>\n			</div><div class=\"et_pb_module et_pb_team_member et_pb_team_member_5 clearfix  et_pb_bg_layout_light et_pb_team_member_no_image\">\n				\n				\n				\n				\n				\n				<div class=\"et_pb_team_member_description\">\n					\n					\n					<div>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.<br />\nCathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</div>\n					\n				</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_2_5 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img width=\"1360\" height=\"1088\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" alt=\"\" title=\"\" srcset=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg 1360w, https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-1280x1024.jpg 1280w, https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-980x784.jpg 980w, https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-480x384.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1360px, 100vw\" class=\"wp-image-445\" /></span>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5 et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_2_5 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img width=\"1360\" height=\"1088\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" alt=\"\" title=\"\" srcset=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg 1360w, https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-1280x1024.jpg 1280w, https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-980x784.jpg 980w, https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-480x384.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1360px, 100vw\" class=\"wp-image-446\" /></span>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_3_5 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_team_member et_pb_team_member_6 clearfix  et_pb_bg_layout_light et_pb_team_member_no_image\">\n				\n				\n				\n				\n				\n				<div class=\"et_pb_team_member_description\">\n					<h4 class=\"et_pb_module_header\">Sarah Ward</h4>\n					<p class=\"et_pb_member_position\">Bookkeeper</p>\n					\n					\n				</div>\n			</div><div class=\"et_pb_module et_pb_team_member et_pb_team_member_7 clearfix  et_pb_bg_layout_light et_pb_team_member_no_image\">\n				\n				\n				\n				\n				\n				<div class=\"et_pb_team_member_description\">\n					\n					\n					<div>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. <br />\n Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. <br />\n Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</div>\n					\n				</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_3 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Testimonials</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">        <div class=\"rplg\" style=\"\" data-id=\"236\"><div class=\"rplg-slider\"><div class=\"rplgsw-container\"><div class=\"rplgsw-wrapper\"><div class=\"rplgsw-slide\"><div class=\"rplg-slider-review\"><div class=\"rplg-box\"><div class=\"rplg-box-content\" ><div class=\"rplg-stars\" data-info=\"5,google,#777\"></div><span class=\"rplg-review-text\">                        Trena has been helping me with my business bookkeeping for just over 2 years now, recently Cathie has taken over my account, both Trena and Cathie do a fantastic job and I would strongly recommend Capital Bookkeeping for your business needs.  With 2 full tax seasons done, my accountant as said to me on both occasions \"you are very fortunate to have such a good bookkeeper.\"  Cathie is great, she is prompt with email correspondence, and easy yet professional to deal with.  Dealing with great bookkeepers makes my life so much easier, and tax season that much more enjoyable, haha.Thanks girls, and keep up the hard work.                    </span><span class=\"rplg-review-badge\" data-badge=\"google\"></span></div></div><div class=\"rplg-row\"><div class=\"rplg-row-left\"><img src=\"https://capitalbookkeepingco.com/wp-content/plugins/business-reviews-bundle/assets/img/google_avatar.png\" data-src=\"https://lh3.googleusercontent.com/a-/AFdZucqH5KVSB-OetFtpHV7AgS6Tfolh0JC1U-Imdgoj=s120-c-c0x00000000-cc-rp-mo-s56-br100\" class=\"rplg-review-avatar rplg-blazy\" alt=\"Doug N.\" width=\"56\" height=\"56\" title=\"Doug N.\" onerror=\"if(this.src!=\'https://capitalbookkeepingco.com/wp-content/plugins/business-reviews-bundle/assets/img/google_avatar.png\')this.src=\'https://capitalbookkeepingco.com/wp-content/plugins/business-reviews-bundle/assets/img/google_avatar.png\';\" ></div><div class=\"rplg-row-right\"><div class=\"rplg-review-name rplg-trim\" title=\"Doug N.\">Doug N.</div></div></div></div></div><div class=\"rplgsw-slide\"><div class=\"rplg-slider-review\"><div class=\"rplg-box\"><div class=\"rplg-box-content\" ><div class=\"rplg-stars\" data-info=\"5,google,#777\"></div><span class=\"rplg-review-text\">                        Trena and her staff took over my bookkeeping two years ago. They quickly and efficiently cleaned up the mess I gave them.  I am very impressed with there attention to detail and professionalism.  I would not hesitate to recommend their services.                    </span><span class=\"rplg-review-badge\" data-badge=\"google\"></span></div></div><div class=\"rplg-row\"><div class=\"rplg-row-left\"><img src=\"https://capitalbookkeepingco.com/wp-content/plugins/business-reviews-bundle/assets/img/google_avatar.png\" data-src=\"https://lh3.googleusercontent.com/a/AItbvmn_Z22WrqwWHvYoLl5Jn3l9JO-ZBvlqZhZHgGe1=s120-c-c0x00000000-cc-rp-mo-s56-br100\" class=\"rplg-review-avatar rplg-blazy\" alt=\"Blair P.\" width=\"56\" height=\"56\" title=\"Blair P.\" onerror=\"if(this.src!=\'https://capitalbookkeepingco.com/wp-content/plugins/business-reviews-bundle/assets/img/google_avatar.png\')this.src=\'https://capitalbookkeepingco.com/wp-content/plugins/business-reviews-bundle/assets/img/google_avatar.png\';\" ></div><div class=\"rplg-row-right\"><div class=\"rplg-review-name rplg-trim\" title=\"Blair P.\">Blair P.</div></div></div></div></div><div class=\"rplgsw-slide\"><div class=\"rplg-slider-review\"><div class=\"rplg-box\"><div class=\"rplg-box-content\" ><div class=\"rplg-stars\" data-info=\"5,google,#777\"></div><span class=\"rplg-review-text\">                        Professional bookkeeping in West Kelowna! Trena and her team make  keeping track of financials and getting statements easy to do.                    </span><span class=\"rplg-review-badge\" data-badge=\"google\"></span></div></div><div class=\"rplg-row\"><div class=\"rplg-row-left\"><img src=\"https://capitalbookkeepingco.com/wp-content/plugins/business-reviews-bundle/assets/img/google_avatar.png\" data-src=\"https://lh3.googleusercontent.com/a-/AFdZucp3U9jEN-LzI9M2CGam09a6fcujOEK23dtiyTklPg=s120-c-c0x00000000-cc-rp-mo-s56-br100\" class=\"rplg-review-avatar rplg-blazy\" alt=\"Local Marketing P.\" width=\"56\" height=\"56\" title=\"Local Marketing P.\" onerror=\"if(this.src!=\'https://capitalbookkeepingco.com/wp-content/plugins/business-reviews-bundle/assets/img/google_avatar.png\')this.src=\'https://capitalbookkeepingco.com/wp-content/plugins/business-reviews-bundle/assets/img/google_avatar.png\';\" ></div><div class=\"rplg-row-right\"><div class=\"rplg-review-name rplg-trim\" title=\"Local Marketing P.\">Local Marketing P.</div></div></div></div></div></div><div class=\"rplgsw-pagination\"></div></div><div class=\"rplg-slider-prev\"><span>&lsaquo;</span></div><div class=\"rplg-slider-next\"><span>&rsaquo;</span></div></div><img src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"js_loader\" onload=\"(function(el, data) { var t = setInterval(function () { if (window.rplg_init_slider_theme){ rplg_init_slider_theme(el, data); clearInterval(t); } }, 200); })(this.parentNode, {\'speed\':5000,\'effect\':\'slide\',\'count\':\'1\',\'space\':40,\'pagin\':true,\'nextprev\':true,\'mobileBreakpoint\':500,\'mobileCount\':1,\'tabletBreakpoint\':800,\'tabletCount\':2,\'desktopBreakpoint\':1024,\'desktopCount\':\'1\'});\" data-exec=\"false\" width=\"1\" height=\"1\" style=\"display:none\"></div>        </div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(278,109,'_et_pb_truncate_post_date','2022-08-07 18:43:56'),(279,109,'_et_pb_old_content',''),(280,109,'_edit_lock','1692817097:2'),(281,109,'_et_pb_built_for_post_type','page'),(282,109,'_et_pb_ab_subjects',''),(283,109,'_et_pb_enable_shortcode_tracking',''),(284,109,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"109\" /]'),(285,109,'_et_pb_custom_css',''),(286,109,'_et_pb_gutter_width','3'),(291,114,'_wp_attached_file','2021/12/handshake-close-up-executives-scaled.jpg'),(288,109,'_global_colors_info','{}'),(289,109,'_et_builder_version','VB|Divi|4.15.1'),(290,109,'_et_pb_show_page_creation','off'),(292,114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:48:\"2021/12/handshake-close-up-executives-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"handshake-close-up-executives-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:42:\"handshake-close-up-executives-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"handshake-close-up-executives-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:41:\"handshake-close-up-executives-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"handshake-close-up-executives-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"handshake-close-up-executives-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"handshake-close-up-executives-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"handshake-close-up-executives-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"handshake-close-up-executives-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"handshake-close-up-executives-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"handshake-close-up-executives-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"handshake-close-up-executives-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"handshake-close-up-executives-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"handshake-close-up-executives-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"handshake-close-up-executives-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"handshake-close-up-executives-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:73:\"Image of business partners handshaking over business objects on workplace\";s:17:\"created_timestamp\";s:10:\"1406306000\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:16:\"Making agreement\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:48:{i:0;s:8:\"business\";i:1;s:5:\"human\";i:2;s:8:\"personal\";i:3;s:4:\"male\";i:4;s:4:\"team\";i:5;s:8:\"teamwork\";i:6;s:7:\"meeting\";i:7;s:4:\"work\";i:8;s:5:\"white\";i:9;s:8:\"strategy\";i:10;s:11:\"cooperation\";i:11;s:13:\"collaboration\";i:12;s:5:\"paper\";i:13;s:9:\"paperwork\";i:14;s:8:\"document\";i:15;s:7:\"closeup\";i:16;s:8:\"close-up\";i:17;s:4:\"hand\";i:18;s:5:\"trade\";i:19;s:8:\"commerce\";i:20;s:4:\"idea\";i:21;s:5:\"chart\";i:22;s:7:\"project\";i:23;s:5:\"focus\";i:24;s:10:\"occupation\";i:25;s:6:\"career\";i:26;s:8:\"progress\";i:27;s:11:\"achievement\";i:28;s:3:\"job\";i:29;s:10:\"employment\";i:30;s:8:\"touchpad\";i:31;s:9:\"workplace\";i:32;s:6:\"object\";i:33;s:8:\"contract\";i:34;s:4:\"deal\";i:35;s:9:\"agreement\";i:36;s:4:\"data\";i:37;s:11:\"information\";i:38;s:11:\"handshaking\";i:39;s:6:\"joined\";i:40;s:9:\"dedicated\";i:41;s:5:\"final\";i:42;s:8:\"decision\";i:43;s:9:\"gesturing\";i:44;s:9:\"signature\";i:45;s:5:\"union\";i:46;s:5:\"trust\";i:47;s:13:\"companionship\";}}s:14:\"original_image\";s:33:\"handshake-close-up-executives.jpg\";}'),(293,115,'_wp_attached_file','2021/12/executives-greeting-each-other-scaled.jpg'),(294,115,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:49:\"2021/12/executives-greeting-each-other-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"executives-greeting-each-other-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:43:\"executives-greeting-each-other-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"executives-greeting-each-other-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:42:\"executives-greeting-each-other-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"executives-greeting-each-other-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:44:\"executives-greeting-each-other-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"executives-greeting-each-other-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"executives-greeting-each-other-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"executives-greeting-each-other-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"executives-greeting-each-other-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"executives-greeting-each-other-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"executives-greeting-each-other-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"executives-greeting-each-other-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"executives-greeting-each-other-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"executives-greeting-each-other-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:42:\"executives-greeting-each-other-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:62:\"Portrait of elegant businessmen handshaking in conference hall\";s:17:\"created_timestamp\";s:10:\"1371797527\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:18:\"Business handshake\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:48:{i:0;s:8:\"business\";i:1;s:14:\"businesspeople\";i:2;s:6:\"people\";i:3;s:3:\"man\";i:4;s:11:\"businessman\";i:5;s:9:\"lifestyle\";i:6;s:4:\"male\";i:7;s:6:\"modern\";i:8;s:12:\"contemporary\";i:9;s:9:\"corporate\";i:10;s:11:\"corporation\";i:11;s:6:\"office\";i:12;s:4:\"work\";i:13;s:6:\"formal\";i:14;s:9:\"executive\";i:15;s:3:\"job\";i:16;s:10:\"employment\";i:17;s:10:\"occupation\";i:18;s:9:\"financial\";i:19;s:5:\"final\";i:20;s:6:\"career\";i:21;s:5:\"trust\";i:22;s:5:\"unity\";i:23;s:11:\"handshaking\";i:24;s:9:\"integrity\";i:25;s:4:\"deal\";i:26;s:5:\"union\";i:27;s:10:\"friendship\";i:28;s:11:\"partnership\";i:29;s:8:\"contract\";i:30;s:4:\"sign\";i:31;s:7:\"gesture\";i:32;s:6:\"joined\";i:33;s:9:\"dedicated\";i:34;s:13:\"companionship\";i:35;s:8:\"greeting\";i:36;s:8:\"congrats\";i:37;s:8:\"decision\";i:38;s:5:\"trade\";i:39;s:8:\"commerce\";i:40;s:9:\"handshake\";i:41;s:7:\"concept\";i:42;s:7:\"elegant\";i:43;s:12:\"well-dressed\";i:44;s:5:\"happy\";i:45;s:7:\"smiling\";i:46;s:9:\"confident\";i:47;s:10:\"successful\";}}s:14:\"original_image\";s:34:\"executives-greeting-each-other.jpg\";}'),(295,116,'_wp_attached_file','2021/12/businessman-leader-modern-office-with-businesspeople-working-scaled.jpg'),(296,116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:79:\"2021/12/businessman-leader-modern-office-with-businesspeople-working-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:72:\"businessman-leader-modern-office-with-businesspeople-working-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:73:\"businessman-leader-modern-office-with-businesspeople-working-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:72:\"businessman-leader-modern-office-with-businesspeople-working-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:72:\"businessman-leader-modern-office-with-businesspeople-working-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:74:\"businessman-leader-modern-office-with-businesspeople-working-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:74:\"businessman-leader-modern-office-with-businesspeople-working-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:72:\"businessman-leader-modern-office-with-businesspeople-working-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:73:\"businessman-leader-modern-office-with-businesspeople-working-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:72:\"businessman-leader-modern-office-with-businesspeople-working-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:72:\"businessman-leader-modern-office-with-businesspeople-working-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:73:\"businessman-leader-modern-office-with-businesspeople-working-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:72:\"businessman-leader-modern-office-with-businesspeople-working-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:74:\"businessman-leader-modern-office-with-businesspeople-working-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:73:\"businessman-leader-modern-office-with-businesspeople-working-1280x855.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:72:\"businessman-leader-modern-office-with-businesspeople-working-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:72:\"businessman-leader-modern-office-with-businesspeople-working-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:26:\"Javier Sánchez Mingorance\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:181:\"Caucasian businessman leader looking at camera in modern office with multi-ethnic businesspeople working at the background. Teamwork concept. Young man with beard wearing blue suit.\";s:17:\"created_timestamp\";s:10:\"1389716398\";s:9:\"copyright\";s:29:\"© Javier Sánchez Mingorance\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:63:\"Businessman leader in modern office with businesspeople working\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:8:\"business\";i:1;s:4:\"team\";i:2;s:6:\"people\";i:3;s:12:\"professional\";i:4;s:6:\"office\";i:5;s:9:\"corporate\";i:6;s:5:\"group\";i:7;s:10:\"leadership\";i:8;s:6:\"female\";i:9;s:8:\"teamwork\";i:10;s:14:\"businesspeople\";i:11;s:13:\"businesswoman\";i:12;s:5:\"white\";i:13;s:4:\"male\";i:14;s:11:\"businessman\";i:15;s:10:\"successful\";i:16;s:7:\"workers\";i:17;s:5:\"young\";i:18;s:9:\"confident\";i:19;s:5:\"black\";i:20;s:7:\"african\";i:21;s:4:\"suit\";i:22;s:9:\"caucasian\";i:23;s:6:\"worker\";i:24;s:8:\"american\";i:25;s:7:\"meeting\";i:26;s:4:\"work\";i:27;s:7:\"success\";i:28;s:7:\"working\";i:29;s:7:\"smiling\";i:30;s:9:\"executive\";i:31;s:6:\"leader\";i:32;s:11:\"partnership\";i:33;s:4:\"boss\";i:34;s:7:\"indoors\";i:35;s:19:\"white collar worker\";i:36;s:6:\"collar\";i:37;s:8:\"cheerful\";i:38;s:7:\"looking\";i:39;s:5:\"smile\";i:40;s:11:\"multiracial\";i:41;s:12:\"multi-ethnic\";i:42;s:4:\"girl\";i:43;s:3:\"guy\";i:44;s:7:\"finance\";i:45;s:3:\"man\";i:46;s:10:\"colleagues\";i:47;s:8:\"partners\";i:48;s:5:\"woman\";}}s:14:\"original_image\";s:64:\"businessman-leader-modern-office-with-businesspeople-working.jpg\";}'),(1375,109,'_yoast_wpseo_content_score','30'),(897,118,'_yoast_wpseo_content_score','90'),(324,118,'_et_pb_show_page_creation','off'),(402,137,'_et_pb_custom_css',''),(403,137,'_et_pb_gutter_width','3'),(405,137,'_global_colors_info','{}'),(406,137,'_et_builder_version','VB|Divi|4.14.2'),(407,137,'_et_pb_show_page_creation','off'),(385,137,'_edit_last','1'),(386,137,'_edit_lock','1692970571:2'),(387,137,'_wp_page_template','default'),(388,137,'_et_pb_post_hide_nav','default'),(389,137,'_et_pb_page_layout','et_right_sidebar'),(390,137,'_et_pb_side_nav','off'),(391,137,'_et_pb_use_builder','on'),(392,137,'_et_pb_first_image',''),(393,137,'_et_pb_truncate_post',''),(394,137,'_et_pb_truncate_post_date',''),(395,137,'_et_pb_old_content',''),(396,140,'_wp_attached_file','2021/12/business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-scaled.jpg'),(397,140,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:101:\"2021/12/business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:94:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-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:95:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:94:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-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:94:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:96:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:96:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:94:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:95:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:94:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:94:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:95:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:94:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:96:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:95:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:94:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:94:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:88:\"Business finance man calculating budget numbers, Invoices and financial adviser working.\";s:17:\"created_timestamp\";s:10:\"1485343334\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"23.3\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:64:\"Business finance man calculating budget numbers, Invoices and fi\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:7:\"account\";i:1;s:10:\"accountant\";i:2;s:10:\"accounting\";i:3;s:7:\"advisor\";i:4;s:9:\"analyzing\";i:5;s:5:\"audit\";i:6;s:4:\"bill\";i:7;s:6:\"budget\";i:8;s:8:\"business\";i:9;s:11:\"businessman\";i:10;s:9:\"calculate\";i:11;s:11:\"calculating\";i:12;s:10:\"calculator\";i:13;s:8:\"close-up\";i:14;s:7:\"company\";i:15;s:8:\"computer\";i:16;s:9:\"corporate\";i:17;s:4:\"data\";i:18;s:4:\"desk\";i:19;s:8:\"document\";i:20;s:9:\"documents\";i:21;s:7:\"economy\";i:22;s:8:\"expenses\";i:23;s:7:\"finance\";i:24;s:9:\"financial\";i:25;s:7:\"holding\";i:26;s:10:\"investment\";i:27;s:7:\"invoice\";i:28;s:3:\"job\";i:29;s:4:\"male\";i:30;s:3:\"man\";i:31;s:10:\"occupation\";i:32;s:6:\"office\";i:33;s:3:\"one\";i:34;s:5:\"paper\";i:35;s:9:\"paperwork\";i:36;s:3:\"pen\";i:37;s:6:\"people\";i:38;s:6:\"person\";i:39;s:12:\"professional\";i:40;s:7:\"receipt\";i:41;s:6:\"report\";i:42;s:4:\"sale\";i:43;s:7:\"sitting\";i:44;s:5:\"table\";i:45;s:3:\"tax\";i:46;s:10:\"technology\";i:47;s:6:\"typing\";i:48;s:4:\"work\";i:49;s:7:\"working\";}}s:14:\"original_image\";s:86:\"business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working.jpg\";}'),(398,137,'_et_pb_built_for_post_type','page'),(399,137,'_et_pb_ab_subjects',''),(400,137,'_et_pb_enable_shortcode_tracking',''),(401,137,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"137\" /]'),(301,118,'_edit_last','4'),(302,118,'_wp_page_template','default'),(303,118,'_et_pb_post_hide_nav','default'),(304,118,'_et_pb_page_layout','et_right_sidebar'),(305,118,'_et_pb_side_nav','off'),(306,118,'_et_pb_use_builder','on'),(307,118,'_et_pb_first_image',''),(308,118,'_et_pb_truncate_post',''),(309,118,'_et_pb_truncate_post_date',''),(310,118,'_et_pb_old_content',''),(311,118,'_edit_lock','1693418192:4'),(312,118,'_et_pb_built_for_post_type','page'),(313,118,'_et_pb_ab_subjects',''),(314,118,'_et_pb_enable_shortcode_tracking',''),(315,118,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"118\" /]'),(316,118,'_et_pb_custom_css',''),(317,118,'_et_pb_gutter_width','3'),(321,121,'_wp_attached_file','2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg'),(319,118,'_global_colors_info','{}'),(320,118,'_et_builder_version','VB|Divi|4.22.1'),(322,121,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:79:\"2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:72:\"accountant-calculating-profit-with-financial-analysis-graphs-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:73:\"accountant-calculating-profit-with-financial-analysis-graphs-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:72:\"accountant-calculating-profit-with-financial-analysis-graphs-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:72:\"accountant-calculating-profit-with-financial-analysis-graphs-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:74:\"accountant-calculating-profit-with-financial-analysis-graphs-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:74:\"accountant-calculating-profit-with-financial-analysis-graphs-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:72:\"accountant-calculating-profit-with-financial-analysis-graphs-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:73:\"accountant-calculating-profit-with-financial-analysis-graphs-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:72:\"accountant-calculating-profit-with-financial-analysis-graphs-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:72:\"accountant-calculating-profit-with-financial-analysis-graphs-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:73:\"accountant-calculating-profit-with-financial-analysis-graphs-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:72:\"accountant-calculating-profit-with-financial-analysis-graphs-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:74:\"accountant-calculating-profit-with-financial-analysis-graphs-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:73:\"accountant-calculating-profit-with-financial-analysis-graphs-1280x855.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:72:\"accountant-calculating-profit-with-financial-analysis-graphs-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:72:\"accountant-calculating-profit-with-financial-analysis-graphs-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:8:\"KIENGCAN\";s:6:\"camera\";s:10:\"NIKON D600\";s:7:\"caption\";s:144:\"Accountant calculating profit with financial analysis graphs. Notebook, glasses and calculator lying on desk. Accountancy concept. Cropped view.\";s:17:\"created_timestamp\";s:10:\"1532852790\";s:9:\"copyright\";s:19:\"KIENGCAN/0968101675\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:60:\"Accountant calculating profit with financial analysis graphs\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:8:\"business\";i:1;s:7:\"finance\";i:2;s:10:\"technology\";i:3;s:7:\"digital\";i:4;s:5:\"chart\";i:5;s:7:\"diagram\";i:6;s:9:\"financial\";i:7;s:8:\"analysis\";i:8;s:6:\"person\";i:9;s:6:\"female\";i:10;s:5:\"woman\";i:11;s:5:\"young\";i:12;s:6:\"formal\";i:13;s:4:\"hand\";i:14;s:10:\"calculator\";i:15;s:3:\"pen\";i:16;s:4:\"desk\";i:17;s:8:\"notebook\";i:18;s:7:\"notepad\";i:19;s:7:\"glasses\";i:20;s:6:\"office\";i:21;s:7:\"working\";i:22;s:8:\"pressing\";i:23;s:11:\"calculating\";i:24;s:9:\"computing\";i:25;s:12:\"professional\";i:26;s:6:\"banker\";i:27;s:10:\"accountant\";i:28;s:8:\"employee\";i:29;s:6:\"worker\";i:30;s:6:\"expert\";i:31;s:8:\"customer\";i:32;s:10:\"accounting\";i:33;s:7:\"banking\";i:34;s:9:\"workplace\";i:35;s:5:\"money\";i:36;s:6:\"report\";i:37;s:6:\"salary\";i:38;s:7:\"expense\";i:39;s:10:\"investment\";i:40;s:10:\"management\";i:41;s:8:\"research\";i:42;s:3:\"tax\";i:43;s:6:\"profit\";i:44;s:9:\"corporate\";i:45;s:7:\"concept\";i:46;s:14:\"unrecognizable\";i:47;s:7:\"cropped\";i:48;s:7:\"virtual\";i:49;s:8:\"graphics\";}}s:14:\"original_image\";s:64:\"accountant-calculating-profit-with-financial-analysis-graphs.jpg\";}'),(782,235,'_wp_old_date','2022-01-07'),(783,236,'_wp_old_date','2022-01-07'),(784,237,'_edit_last','1'),(785,237,'_wp_page_template','default'),(786,237,'_et_pb_post_hide_nav','default'),(787,237,'_et_pb_page_layout','et_right_sidebar'),(788,237,'_et_pb_side_nav','off'),(789,237,'_et_pb_use_builder','on'),(790,237,'_et_pb_first_image',''),(791,237,'_et_pb_truncate_post',''),(792,237,'_et_pb_truncate_post_date',''),(793,237,'_et_pb_old_content',''),(794,237,'_yoast_wpseo_estimated-reading-time-minutes',''),(428,147,'_wp_attached_file','2021/12/economist-office-scaled.jpg'),(429,147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:35:\"2021/12/economist-office-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"economist-office-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:29:\"economist-office-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"economist-office-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:28:\"economist-office-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"economist-office-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:30:\"economist-office-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"economist-office-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"economist-office-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"economist-office-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"economist-office-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"economist-office-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"economist-office-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"economist-office-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:29:\"economist-office-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:28:\"economist-office-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"economist-office-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:67:\"Successful financier with papers making notes in notebook in office\";s:17:\"created_timestamp\";s:10:\"1496650333\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:19:\"Economist in office\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:32:{i:0;s:8:\"business\";i:1;s:5:\"woman\";i:2;s:6:\"person\";i:3;s:13:\"businesswoman\";i:4;s:7:\"1 woman\";i:5;s:9:\"one woman\";i:6;s:12:\"organization\";i:7;s:5:\"young\";i:8;s:5:\"adult\";i:9;s:9:\"corporate\";i:10;s:9:\"executive\";i:11;s:6:\"expert\";i:12;s:9:\"economist\";i:13;s:9:\"financier\";i:14;s:6:\"office\";i:15;s:9:\"workplace\";i:16;s:5:\"solve\";i:17;s:3:\"job\";i:18;s:12:\"professional\";i:19;s:10:\"profession\";i:20;s:6:\"banker\";i:21;s:7:\"manager\";i:22;s:10:\"accountant\";i:23;s:8:\"planning\";i:24;s:7:\"analyst\";i:25;s:7:\"prepare\";i:26;s:11:\"bookkeeping\";i:27;s:7:\"auditor\";i:28;s:5:\"happy\";i:29;s:10:\"successful\";i:30;s:7:\"smiling\";i:31;s:4:\"note\";}}s:14:\"original_image\";s:20:\"economist-office.jpg\";}'),(438,151,'_menu_item_type','post_type'),(439,151,'_menu_item_menu_item_parent','0'),(440,151,'_menu_item_object_id','137'),(441,151,'_menu_item_object','page'),(442,151,'_menu_item_target',''),(443,151,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(444,151,'_menu_item_xfn',''),(445,151,'_menu_item_url',''),(513,172,'_wp_attached_file','2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg'),(514,172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:62:\"2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"concentrated-businesswoman-with-highlighter-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:56:\"concentrated-businesswoman-with-highlighter-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"concentrated-businesswoman-with-highlighter-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:55:\"concentrated-businesswoman-with-highlighter-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"concentrated-businesswoman-with-highlighter-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"concentrated-businesswoman-with-highlighter-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"concentrated-businesswoman-with-highlighter-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"concentrated-businesswoman-with-highlighter-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"concentrated-businesswoman-with-highlighter-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"concentrated-businesswoman-with-highlighter-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:56:\"concentrated-businesswoman-with-highlighter-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"concentrated-businesswoman-with-highlighter-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:57:\"concentrated-businesswoman-with-highlighter-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:56:\"concentrated-businesswoman-with-highlighter-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:55:\"concentrated-businesswoman-with-highlighter-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:55:\"concentrated-businesswoman-with-highlighter-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:63:\"Portrait of a young businesswoman working with papers in office\";s:17:\"created_timestamp\";s:10:\"1312869697\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:18:\"Accountant at work\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:8:\"business\";i:1;s:6:\"people\";i:2;s:13:\"businesswoman\";i:3;s:5:\"woman\";i:4;s:14:\"businesspeople\";i:5;s:9:\"confident\";i:6;s:9:\"corporate\";i:7;s:9:\"executive\";i:8;s:6:\"female\";i:9;s:5:\"white\";i:10;s:6:\"collar\";i:11;s:6:\"career\";i:12;s:12:\"contemporary\";i:13;s:5:\"young\";i:14;s:5:\"adult\";i:15;s:10:\"successful\";i:16;s:6:\"pretty\";i:17;s:9:\"lifestyle\";i:18;s:9:\"Caucasian\";i:19;s:10:\"attractive\";i:20;s:6:\"leader\";i:21;s:8:\"feminine\";i:22;s:8:\"charming\";i:23;s:9:\"beautiful\";i:24;s:6:\"lovely\";i:25;s:4:\"lady\";i:26;s:3:\"job\";i:27;s:9:\"secretary\";i:28;s:4:\"girl\";i:29;s:10:\"calculator\";i:30;s:8:\"employer\";i:31;s:9:\"expertise\";i:32;s:8:\"portrait\";i:33;s:5:\"smart\";i:34;s:10:\"accountant\";i:35;s:5:\"human\";i:36;s:3:\"one\";i:37;s:6:\"single\";i:38;s:5:\"paper\";i:39;s:9:\"paperwork\";i:40;s:8:\"document\";i:41;s:9:\"financial\";i:42;s:9:\"economist\";i:43;s:6:\"office\";i:44;s:4:\"busy\";i:45;s:10:\"occupation\";i:46;s:10:\"employment\";i:47;s:11:\"highlighter\";i:48;s:5:\"stack\";}}s:14:\"original_image\";s:47:\"concentrated-businesswoman-with-highlighter.jpg\";}'),(469,152,'_et_pb_built_for_post_type','page'),(470,152,'_et_pb_ab_subjects',''),(471,152,'_et_pb_enable_shortcode_tracking',''),(472,152,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"152\" /]'),(473,152,'_et_pb_custom_css',''),(474,152,'_et_pb_gutter_width','3'),(475,152,'_thumbnail_id','0'),(476,152,'_global_colors_info','{}'),(477,152,'_et_pb_first_image',''),(478,152,'_et_pb_truncate_post',''),(479,152,'_et_pb_truncate_post_date',''),(480,152,'_et_builder_version','VB|Divi|4.22.1'),(482,159,'_et_default','1'),(483,159,'_et_enabled','1'),(484,159,'_et_header_layout_id','152'),(485,159,'_et_header_layout_enabled','1'),(486,159,'_et_body_layout_id','0'),(487,159,'_et_body_layout_enabled','1'),(488,159,'_et_footer_layout_id','0'),(489,159,'_et_footer_layout_enabled','1'),(560,158,'_et_template','195'),(1769,495,'_oembed_time_821c1c9160b2688a520f1ca446101f45','1647184935'),(494,155,'_et_theme_builder_marked_as_unused','2021-12-16 19:38:38'),(495,76,'_et_theme_builder_marked_as_unused','2021-12-16 19:38:38'),(436,149,'_wp_attached_file','2021/12/close-up-busy-businesswoman-scaled.jpg'),(437,149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:46:\"2021/12/close-up-busy-businesswoman-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"close-up-busy-businesswoman-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:40:\"close-up-busy-businesswoman-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"close-up-busy-businesswoman-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:39:\"close-up-busy-businesswoman-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"close-up-busy-businesswoman-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"close-up-busy-businesswoman-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"close-up-busy-businesswoman-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"close-up-busy-businesswoman-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"close-up-busy-businesswoman-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"close-up-busy-businesswoman-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"close-up-busy-businesswoman-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"close-up-busy-businesswoman-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:41:\"close-up-busy-businesswoman-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"close-up-busy-businesswoman-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"close-up-busy-businesswoman-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"close-up-busy-businesswoman-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:65:\"Photo of human hands holding pencil and ticking data in documents\";s:17:\"created_timestamp\";s:10:\"1312872214\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:16:\"Accounting notes\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:8:\"business\";i:1;s:5:\"human\";i:2;s:6:\"female\";i:3;s:8:\"personal\";i:4;s:4:\"plan\";i:5;s:8:\"planning\";i:6;s:7:\"holding\";i:7;s:4:\"hand\";i:8;s:6:\"course\";i:9;s:6:\"pencil\";i:10;s:10:\"fingernail\";i:11;s:6:\"finger\";i:12;s:10:\"occupation\";i:13;s:4:\"work\";i:14;s:7:\"working\";i:15;s:8:\"strategy\";i:16;s:6:\"object\";i:17;s:9:\"financial\";i:18;s:5:\"paper\";i:19;s:7:\"finance\";i:20;s:10:\"employment\";i:21;s:5:\"white\";i:22;s:6:\"modern\";i:23;s:6:\"career\";i:24;s:3:\"job\";i:25;s:9:\"paperwork\";i:26;s:9:\"education\";i:27;s:9:\"workplace\";i:28;s:10:\"accounting\";i:29;s:7:\"project\";i:30;s:6:\"number\";i:31;s:6:\"report\";i:32;s:6:\"detail\";i:33;s:4:\"part\";i:34;s:9:\"resources\";i:35;s:9:\"marketing\";i:36;s:9:\"economics\";i:37;s:4:\"busy\";i:38;s:8:\"counting\";i:39;s:4:\"note\";i:40;s:7:\"written\";i:41;s:7:\"writing\";i:42;s:4:\"mark\";i:43;s:8:\"pointing\";i:44;s:7:\"closeup\";i:45;s:8:\"close-up\";i:46;s:5:\"focus\";i:47;s:11:\"improvement\";i:48;s:7:\"ticking\";}}s:14:\"original_image\";s:31:\"close-up-busy-businesswoman.jpg\";}'),(936,305,'_wp_attached_file','2022/01/financial-reports.jpg'),(937,305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:29:\"2022/01/financial-reports.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"financial-reports-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"financial-reports-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"financial-reports-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"financial-reports-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"financial-reports-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"financial-reports-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"financial-reports-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1944,495,'_oembed_time_de95513f3611b8e467446dc292ba08f4','1647185099'),(515,173,'_wp_attached_file','2021/12/forex-trade-graph-chart-concept-scaled.jpg'),(516,173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1837;s:4:\"file\";s:50:\"2021/12/forex-trade-graph-chart-concept-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"forex-trade-graph-chart-concept-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"forex-trade-graph-chart-concept-1024x735.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"forex-trade-graph-chart-concept-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:43:\"forex-trade-graph-chart-concept-768x551.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"forex-trade-graph-chart-concept-1536x1102.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1102;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"forex-trade-graph-chart-concept-2048x1469.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"forex-trade-graph-chart-concept-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"forex-trade-graph-chart-concept-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"forex-trade-graph-chart-concept-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"forex-trade-graph-chart-concept-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"forex-trade-graph-chart-concept-1080x775.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:775;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"forex-trade-graph-chart-concept-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"forex-trade-graph-chart-concept-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:44:\"forex-trade-graph-chart-concept-1280x919.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:919;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:43:\"forex-trade-graph-chart-concept-980x703.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:703;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"forex-trade-graph-chart-concept-480x344.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:12:\"rawpixel.com\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:31:\"Forex Trade Graph Chart Concept\";s:17:\"created_timestamp\";s:10:\"1391311720\";s:9:\"copyright\";s:13:\"Rawpixel Ltd.\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:31:\"Forex Trade Graph Chart Concept\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:45:{i:0;s:7:\"analyse\";i:1;s:8:\"analysis\";i:2;s:8:\"business\";i:3;s:15:\"business people\";i:4;s:5:\"chart\";i:5;s:8:\"coaching\";i:6;s:10:\"conference\";i:7;s:9:\"corporate\";i:8;s:8:\"currency\";i:9;s:10:\"discussion\";i:10;s:9:\"diversity\";i:11;s:7:\"finance\";i:12;s:5:\"forex\";i:13;s:5:\"graph\";i:14;s:7:\"graphic\";i:15;s:6:\"growth\";i:16;s:11:\"interaction\";i:17;s:10:\"investment\";i:18;s:10:\"leadership\";i:19;s:10:\"management\";i:20;s:6:\"market\";i:21;s:9:\"marketing\";i:22;s:7:\"meeting\";i:23;s:3:\"men\";i:24;s:5:\"money\";i:25;s:6:\"office\";i:26;s:13:\"office worker\";i:27;s:6:\"online\";i:28;s:4:\"plan\";i:29;s:8:\"planning\";i:30;s:12:\"professional\";i:31;s:23:\"professional occupation\";i:32;s:4:\"risk\";i:33;s:5:\"stock\";i:34;s:8:\"strategy\";i:35;s:7:\"success\";i:36;s:4:\"team\";i:37;s:5:\"trade\";i:38;s:7:\"trading\";i:39;s:7:\"trainee\";i:40;s:7:\"trainer\";i:41;s:8:\"training\";i:42;s:19:\"white collar worker\";i:43;s:5:\"women\";i:44;s:4:\"work\";}}s:14:\"original_image\";s:35:\"forex-trade-graph-chart-concept.jpg\";}'),(517,174,'_wp_attached_file','2021/12/stock-exchange-trading-forex-finance-graphic-concept-scaled.jpg'),(518,174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2079;s:4:\"file\";s:71:\"2021/12/stock-exchange-trading-forex-finance-graphic-concept-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"stock-exchange-trading-forex-finance-graphic-concept-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"stock-exchange-trading-forex-finance-graphic-concept-1024x832.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:832;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"stock-exchange-trading-forex-finance-graphic-concept-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:64:\"stock-exchange-trading-forex-finance-graphic-concept-768x624.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:624;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:66:\"stock-exchange-trading-forex-finance-graphic-concept-1536x1248.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:66:\"stock-exchange-trading-forex-finance-graphic-concept-2048x1663.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1663;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"stock-exchange-trading-forex-finance-graphic-concept-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:65:\"stock-exchange-trading-forex-finance-graphic-concept-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"stock-exchange-trading-forex-finance-graphic-concept-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"stock-exchange-trading-forex-finance-graphic-concept-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:65:\"stock-exchange-trading-forex-finance-graphic-concept-1080x877.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:877;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"stock-exchange-trading-forex-finance-graphic-concept-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:66:\"stock-exchange-trading-forex-finance-graphic-concept-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:66:\"stock-exchange-trading-forex-finance-graphic-concept-1280x1040.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1040;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:64:\"stock-exchange-trading-forex-finance-graphic-concept-980x796.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:64:\"stock-exchange-trading-forex-finance-graphic-concept-480x390.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.6\";s:6:\"credit\";s:12:\"rawpixel.com\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:52:\"Stock Exchange Trading Forex Finance Graphic Concept\";s:17:\"created_timestamp\";s:10:\"1391326023\";s:9:\"copyright\";s:13:\"Rawpixel Ltd.\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:52:\"Stock Exchange Trading Forex Finance Graphic Concept\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:46:{i:0;s:10:\"accountant\";i:1;s:14:\"administration\";i:2;s:7:\"banking\";i:3;s:8:\"business\";i:4;s:14:\"business woman\";i:5;s:6:\"charts\";i:6;s:8:\"computer\";i:7;s:8:\"currency\";i:8;s:16:\"customer service\";i:9;s:7:\"economy\";i:10;s:8:\"exchange\";i:11;s:6:\"female\";i:12;s:7:\"finance\";i:13;s:5:\"forex\";i:14;s:14:\"global finance\";i:15;s:6:\"growth\";i:16;s:13:\"international\";i:17;s:10:\"investment\";i:18;s:6:\"market\";i:19;s:5:\"money\";i:20;s:10:\"occupation\";i:21;s:6:\"office\";i:22;s:6:\"online\";i:23;s:20:\"online communication\";i:24;s:13:\"place of work\";i:25;s:23:\"professional occupation\";i:26;s:6:\"profit\";i:27;s:7:\"service\";i:28;s:11:\"shareholder\";i:29;s:6:\"shares\";i:30;s:5:\"stock\";i:31;s:14:\"stock exchange\";i:32;s:12:\"stock market\";i:33;s:6:\"stocks\";i:34;s:10:\"technology\";i:35;s:5:\"trade\";i:36;s:7:\"trading\";i:37;s:6:\"typing\";i:38;s:14:\"using computer\";i:39;s:4:\"wifi\";i:40;s:8:\"wireless\";i:41;s:5:\"woman\";i:42;s:4:\"work\";i:43;s:7:\"working\";i:44;s:9:\"workplace\";i:45;s:9:\"workspace\";}}s:14:\"original_image\";s:56:\"stock-exchange-trading-forex-finance-graphic-concept.jpg\";}'),(453,152,'_et_pb_use_builder','on'),(481,159,'_et_autogenerated_title','0'),(455,155,'_et_autogenerated_title','0'),(456,155,'_et_default','1'),(457,155,'_et_enabled','1'),(458,155,'_et_header_layout_id','152'),(459,155,'_et_header_layout_enabled','1'),(460,155,'_et_body_layout_id','0'),(461,155,'_et_body_layout_enabled','1'),(462,155,'_et_footer_layout_id','0'),(463,155,'_et_footer_layout_enabled','1'),(1765,495,'_oembed_time_3a481ffa1c94f2efeacb51a7d46f6a73','1647184932'),(1766,495,'_oembed_07a116a33c73ed9d0517e3b4d3f6258f','<blockquote class=\"wp-embedded-content\" data-secret=\"Lx6PKTHVy4\"><a href=\"https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Ace US Biz Listings\" src=\"https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=1wk8MxzJOj#?secret=Lx6PKTHVy4\" data-secret=\"Lx6PKTHVy4\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1767,495,'_oembed_time_07a116a33c73ed9d0517e3b4d3f6258f','1647184934'),(1768,495,'_oembed_821c1c9160b2688a520f1ca446101f45','<blockquote class=\"wp-embedded-content\" data-secret=\"gSQosVu2wG\"><a href=\"https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Biz Directory\" src=\"https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=lZgOZ8Rmy1#?secret=gSQosVu2wG\" data-secret=\"gSQosVu2wG\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1962,495,'_oembed_time_6202720d422d2aa881759a8f73a45497','1647185113'),(1963,495,'_oembed_1b30fd4f0aa954fe8d7caf8f5b3c416c','<blockquote class=\"wp-embedded-content\" data-secret=\"iIFQyGQy3s\"><a href=\"https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; First Biz Listings\" src=\"https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=aMD9dpzemS#?secret=iIFQyGQy3s\" data-secret=\"iIFQyGQy3s\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1287,89,'_et_builder_dynamic_assets_loading_attr_threshold','12'),(1958,495,'_oembed_time_5cd94b569aff883e8c9d3d2750e7211a','1647185109'),(1959,495,'_oembed_2b8c84ed1fd89d546dd08b88aef143b5','<blockquote class=\"wp-embedded-content\" data-secret=\"UsbSMoEAlX\"><a href=\"https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; First Biz Directory\" src=\"https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=BGYEZ7HWrQ#?secret=UsbSMoEAlX\" data-secret=\"UsbSMoEAlX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1960,495,'_oembed_time_2b8c84ed1fd89d546dd08b88aef143b5','1647185111'),(1961,495,'_oembed_6202720d422d2aa881759a8f73a45497','<blockquote class=\"wp-embedded-content\" data-secret=\"xctQSRTLdK\"><a href=\"https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; First Biz Listing\" src=\"https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=eewWO2RUO5#?secret=xctQSRTLdK\" data-secret=\"xctQSRTLdK\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1841,495,'_oembed_time_8fc83771b39a069cbcbc2e71ee6b81f3','1647184998'),(3295,118,'_yoast_wpseo_wordproof_timestamp',''),(1950,495,'_oembed_time_dae2acdf23d0128b467c8e84d95f21a5','1647185104'),(1951,495,'_oembed_6f7d147ef7e5b8aed7aa804582973144','<blockquote class=\"wp-embedded-content\" data-secret=\"fxIoZwffob\"><a href=\"https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Essential Local Listings\" src=\"https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=SjgMnyB5WP#?secret=fxIoZwffob\" data-secret=\"fxIoZwffob\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1952,495,'_oembed_time_6f7d147ef7e5b8aed7aa804582973144','1647185105'),(1953,495,'_oembed_4ff0fc915502a8cfd32297532b8d5a80','<blockquote class=\"wp-embedded-content\" data-secret=\"ExS9qZURFY\"><a href=\"https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; EZ Local Listing\" src=\"https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=lhwroDdFJb#?secret=ExS9qZURFY\" data-secret=\"ExS9qZURFY\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1954,495,'_oembed_time_4ff0fc915502a8cfd32297532b8d5a80','1647185107'),(1955,495,'_oembed_5654d6ca0b56bc22930c171106bd983c','<blockquote class=\"wp-embedded-content\" data-secret=\"k404aGCgPr\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; First Business Listing\" src=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=odduNccOeK#?secret=k404aGCgPr\" data-secret=\"k404aGCgPr\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1956,495,'_oembed_time_5654d6ca0b56bc22930c171106bd983c','1647185108'),(1957,495,'_oembed_5cd94b569aff883e8c9d3d2750e7211a','<blockquote class=\"wp-embedded-content\" data-secret=\"s3K1WixS9T\"><a href=\"https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; First Biz Citations\" src=\"https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=kqtKKUHFyl#?secret=s3K1WixS9T\" data-secret=\"s3K1WixS9T\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(748,231,'_wp_attached_file','2022/01/bookkeeper.jpg'),(749,231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2022/01/bookkeeper.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bookkeeper-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bookkeeper-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:22:\"bookkeeper-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"bookkeeper-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"bookkeeper-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"bookkeeper-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"bookkeeper-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"bookkeeper-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(750,232,'_wp_attached_file','2022/01/calculate.jpg'),(751,232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2022/01/calculate.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"calculate-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"calculate-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:21:\"calculate-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"calculate-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"calculate-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"calculate-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"calculate-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"calculate-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1155,237,'_yoast_wpseo_focuskw','Reviews'),(822,247,'_menu_item_menu_item_parent','0'),(823,247,'_menu_item_object_id','237'),(824,247,'_menu_item_object','page'),(825,247,'_menu_item_target',''),(826,247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(827,247,'_menu_item_xfn',''),(828,247,'_menu_item_url',''),(1903,495,'_oembed_time_35feed698e4c5f04eda82251670632b1','1647185060'),(1904,495,'_oembed_9aa983414ff23bbecd7e2d0a7da93372','<blockquote class=\"wp-embedded-content\" data-secret=\"AeVmiIzLdk\"><a href=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Boss Business Listing\" src=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=riza4sKoPV#?secret=AeVmiIzLdk\" data-secret=\"AeVmiIzLdk\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1905,495,'_oembed_time_9aa983414ff23bbecd7e2d0a7da93372','1647185062'),(1906,495,'_oembed_a9fc7562bdda6a0351c4ba60bbe98ed7','<blockquote class=\"wp-embedded-content\" data-secret=\"Kj0iJh4RbJ\"><a href=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Boss Local Listings\" src=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ubsnd8fMJR#?secret=Kj0iJh4RbJ\" data-secret=\"Kj0iJh4RbJ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(701,221,'_et_pb_built_for_post_type','page'),(702,221,'_et_pb_ab_subjects',''),(703,221,'_et_pb_enable_shortcode_tracking',''),(704,221,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"221\" /]'),(705,221,'_et_pb_custom_css',''),(706,221,'_et_pb_gutter_width','3'),(710,221,'_yoast_wpseo_content_score','60'),(708,221,'_global_colors_info','{}'),(709,221,'_et_builder_version','VB|Divi|4.14.4'),(932,303,'_wp_attached_file','2022/01/Bookkeeper-1.jpg'),(933,303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:24:\"2022/01/Bookkeeper-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Bookkeeper-1-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Bookkeeper-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Bookkeeper-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Bookkeeper-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Bookkeeper-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Bookkeeper-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"Bookkeeper-1-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1875,495,'_oembed_time_f53288ad15b821ec6c5b508222a8daaa','1647185039'),(601,200,'_wp_attached_file','2021/12/Website-Bookkeeper-2.jpg'),(602,200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:32:\"2021/12/Website-Bookkeeper-2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Website-Bookkeeper-2-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Website-Bookkeeper-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Website-Bookkeeper-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Website-Bookkeeper-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Website-Bookkeeper-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Website-Bookkeeper-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"Website-Bookkeeper-2-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1639653589\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(795,237,'_edit_lock','1642345558:1'),(796,239,'_menu_item_type','post_type'),(797,239,'_menu_item_menu_item_parent','0'),(798,239,'_menu_item_object_id','89'),(799,239,'_menu_item_object','page'),(800,239,'_menu_item_target',''),(801,239,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(802,239,'_menu_item_xfn',''),(803,239,'_menu_item_url',''),(821,247,'_menu_item_type','post_type'),(805,237,'_et_pb_built_for_post_type','page'),(806,237,'_et_pb_ab_subjects',''),(807,237,'_et_pb_enable_shortcode_tracking',''),(808,237,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"237\" /]'),(809,237,'_et_pb_custom_css',''),(810,237,'_et_pb_gutter_width','3'),(940,307,'_wp_attached_file','2022/01/grant-application.jpg'),(941,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:29:\"2022/01/grant-application.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"grant-application-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"grant-application-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"grant-application-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"grant-application-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"grant-application-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"grant-application-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"grant-application-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(942,308,'_wp_attached_file','2022/01/payroll-1.jpg'),(943,308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:21:\"2022/01/payroll-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"payroll-1-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"payroll-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"payroll-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"payroll-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"payroll-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"payroll-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"payroll-1-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(944,310,'_wp_attached_file','2022/01/Growing-cash.jpg'),(945,310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:24:\"2022/01/Growing-cash.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Growing-cash-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Growing-cash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Growing-cash-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Growing-cash-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Growing-cash-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Growing-cash-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"Growing-cash-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(946,311,'_wp_attached_file','2022/01/Non-Profit.jpg'),(947,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:22:\"2022/01/Non-Profit.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Non-Profit-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Non-Profit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Non-Profit-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Non-Profit-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"Non-Profit-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"Non-Profit-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"Non-Profit-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1972,495,'_oembed_time_81ef7fb342cb282c15daf7dc343fa737','1647185124'),(1973,495,'_oembed_0691a7375393c447acb278457f136907','<blockquote class=\"wp-embedded-content\" data-secret=\"hdlZhkBwtG\"><a href=\"https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Great Biz Listings\" src=\"https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=2bQC11Tqh8#?secret=hdlZhkBwtG\" data-secret=\"hdlZhkBwtG\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1833,495,'_oembed_time_055c9bd410944442e7736d673d67d794','1647184992'),(1834,495,'_oembed_3086ae4ad22964343d8c79b005ef710d','<blockquote class=\"wp-embedded-content\" data-secret=\"tx5eIaBl0e\"><a href=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bells Local Listings\" src=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=p9G4Zk45OB#?secret=tx5eIaBl0e\" data-secret=\"tx5eIaBl0e\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1770,495,'_oembed_7491179b2c096404bed42db6af761eb4','<blockquote class=\"wp-embedded-content\" data-secret=\"xV1QQLkrlF\"><a href=\"https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Biz Listing\" src=\"https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=wT7Fgr2eif#?secret=xV1QQLkrlF\" data-secret=\"xV1QQLkrlF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(969,314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:23:\"2022/01/bookkeeping.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"bookkeeping-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"bookkeeping-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"bookkeeping-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"bookkeeping-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"bookkeeping-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"bookkeeping-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:23:\"bookkeeping-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(970,315,'_wp_attached_file','2022/01/Government-Remittances.jpg'),(971,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:34:\"2022/01/Government-Remittances.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Government-Remittances-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Government-Remittances-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Government-Remittances-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Government-Remittances-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Government-Remittances-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Government-Remittances-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"Government-Remittances-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(972,316,'_wp_attached_file','2022/01/CRA-Receiver-Payment.jpg'),(973,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:32:\"2022/01/CRA-Receiver-Payment.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"CRA-Receiver-Payment-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"CRA-Receiver-Payment-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"CRA-Receiver-Payment-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"CRA-Receiver-Payment-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"CRA-Receiver-Payment-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"CRA-Receiver-Payment-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"CRA-Receiver-Payment-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1161,94,'_yoast_wpseo_focuskw','Services'),(1162,94,'_yoast_wpseo_metadesc','Capital Bookkeeping Co servivice include accurating bookkeeping, financial reports, recievables & payables government remittances, T4, T4A'),(934,304,'_wp_attached_file','2022/01/Accounts-payable.jpg'),(935,304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:28:\"2022/01/Accounts-payable.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Accounts-payable-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Accounts-payable-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Accounts-payable-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Accounts-payable-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Accounts-payable-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Accounts-payable-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"Accounts-payable-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(996,329,'_et_pb_row_layout','4_4'),(997,329,'_et_pb_built_for_post_type','page'),(998,331,'_edit_last','1'),(999,331,'_wp_page_template','default'),(1000,331,'_et_pb_post_hide_nav','default'),(1001,331,'_et_pb_page_layout','et_right_sidebar'),(1002,331,'_et_pb_side_nav','off'),(1003,331,'_et_pb_use_builder','on'),(1004,331,'_et_pb_first_image',''),(1005,331,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_2 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Kelowna Bookkeeping Services</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				\n			<div id=\"et_pb_contact_form_1\" class=\"et_pb_module et_pb_contact_form_1 et_pb_contact_form_container clearfix\" data-form_unique_num=\"1\" data-form_unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\">\n				\n				\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"http://www.capitalbookkeepingco.com/index.php/?s=captcha\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_name_1\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_1\" class=\"input\" value=\"\" name=\"et_pb_contact_name_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_email_1\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_1\" class=\"input\" value=\"\" name=\"et_pb_contact_email_1\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_5 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_message_1\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_1\" id=\"et_pb_contact_message_1\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_1\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">3 + 2</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"3\" data-second_digit=\"2\" value=\"\" name=\"et_pb_contact_captcha_1\" data-required_mark=\"required\" autocomplete=\"off\">\n				</p>\n			</div>\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\">Submit</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-1\" name=\"_wpnonce-et-pb-contact-form-submitted-1\" value=\"b0e9d66b22\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/index.php/?s=captcha\" />\n					</form>\n				</div>\n			</div>\n			\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</p>\n<p>Set up of accounts in SAGE (Simply Accounting) or Quickbooks<br />\n Accounts Receivable (Invoicing, Statements)<br />\n Accounts Payable (Paying Invoices)<br />\n Bank and credit card reconciliations<br />\n Monthly &amp; yearly financial statement preparations<br />\n Sales tax reconciliation and remittance<br />\n Job Costing<br />\n Budgeting<br />\n Grant application assistance<br />\n Financial report analysis</p>\n<p> <br />\nCorporate, Proprietorships &amp; Non Profits<br />\nIf you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.<br />\nOur services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary book keeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.<br />\nBookkeeping and accounting<br />\nDid you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. <br />\nMany small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. <br />\nHowever, with accounting software, you can simplify your company’s books to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. <br />\nHandling Your Financial Records<br />\nSince finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  <br />\nWhen it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(1006,331,'_et_pb_truncate_post_date','2022-05-11 08:01:11'),(1007,331,'_et_pb_old_content',''),(1008,331,'_yoast_wpseo_estimated-reading-time-minutes',''),(1009,331,'_edit_lock','1692886940:2'),(1010,335,'_wp_attached_file','2022/01/bookkeeping-1.jpg'),(1011,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:757;s:6:\"height\";i:562;s:4:\"file\";s:25:\"2022/01/bookkeeping-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bookkeeping-1-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bookkeeping-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"bookkeeping-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"bookkeeping-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"bookkeeping-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"bookkeeping-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:25:\"bookkeeping-1-480x356.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Jo-Ann\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1642054523\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(977,318,'_wp_attached_file','2022/01/Health-benefits-admin.jpg'),(978,318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:33:\"2022/01/Health-benefits-admin.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Health-benefits-admin-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Health-benefits-admin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Health-benefits-admin-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Health-benefits-admin-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Health-benefits-admin-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Health-benefits-admin-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"Health-benefits-admin-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1927,495,'_oembed_time_592a822effe879058e97b99b02abb95e','1647185080'),(1928,495,'_oembed_5ed326ee19cc46d53c6d20e48fcebe15','<blockquote class=\"wp-embedded-content\" data-secret=\"8SRe1UHOqe\"><a href=\"https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Casey Local Listings\" src=\"https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=J6n81bv3pC#?secret=8SRe1UHOqe\" data-secret=\"8SRe1UHOqe\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1929,495,'_oembed_time_5ed326ee19cc46d53c6d20e48fcebe15','1647185082'),(1930,495,'_oembed_a726ec48392c4159e288380d29025c0f','<blockquote class=\"wp-embedded-content\" data-secret=\"0NaRwp191Q\"><a href=\"https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Cheap Local Listings\" src=\"https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ioT9In8kxO#?secret=0NaRwp191Q\" data-secret=\"0NaRwp191Q\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1931,495,'_oembed_time_a726ec48392c4159e288380d29025c0f','1647185084'),(1932,495,'_oembed_2085d52e19f5e34265d411481ee82e9f','<blockquote class=\"wp-embedded-content\" data-secret=\"Z64kVqD7J5\"><a href=\"https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Check Yo Biz List\" src=\"https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=aKbhpZGnOg#?secret=Z64kVqD7J5\" data-secret=\"Z64kVqD7J5\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1564,137,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(1632,104,'_yoast_wpseo_estimated-reading-time-minutes',''),(2001,495,'_oembed_740a957b5b6823dae08e22184aeef188','<blockquote class=\"wp-embedded-content\" data-secret=\"35glE9Wt4b\"><a href=\"https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Largest Biz Lists\" src=\"https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=CJ8rf5DLVP#?secret=35glE9Wt4b\" data-secret=\"35glE9Wt4b\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2002,495,'_oembed_time_740a957b5b6823dae08e22184aeef188','1647185140'),(2003,495,'_oembed_692480bcafc0ace56f0d5283da92a538','<blockquote class=\"wp-embedded-content\" data-secret=\"7uNi4TlMbr\"><a href=\"https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Leading Biz Directory\" src=\"https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=RvdORWhpGb#?secret=7uNi4TlMbr\" data-secret=\"7uNi4TlMbr\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2004,495,'_oembed_time_692480bcafc0ace56f0d5283da92a538','1647185142'),(2005,495,'_oembed_7ac1bf2ca47f8a77c1bb8bc1e5e4e774','<blockquote class=\"wp-embedded-content\" data-secret=\"Hp4YWg5XBN\"><a href=\"https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Leading Biz List\" src=\"https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=V2wWNlcijf#?secret=Hp4YWg5XBN\" data-secret=\"Hp4YWg5XBN\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1340,433,'_et_pb_built_for_post_type','page'),(1907,495,'_oembed_time_a9fc7562bdda6a0351c4ba60bbe98ed7','1647185064'),(1307,237,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(1878,495,'_oembed_48805140314ff8e5374aa6d52e8dc2eb','<blockquote class=\"wp-embedded-content\" data-secret=\"6PTA7RcxLF\"><a href=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best US Businesses\" src=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=TngcKcDZW0#?secret=6PTA7RcxLF\" data-secret=\"6PTA7RcxLF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(665,89,'_yoast_wpseo_estimated-reading-time-minutes','8'),(979,319,'_wp_attached_file','2022/01/T4.jpg'),(980,319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:14:\"2022/01/T4.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"T4-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"T4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:14:\"T4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:14:\"T4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:14:\"T4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:14:\"T4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:14:\"T4-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(981,320,'_wp_attached_file','2022/01/construction.jpg'),(982,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:24:\"2022/01/construction.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"construction-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"construction-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"construction-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"construction-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"construction-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"construction-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"construction-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(983,321,'_wp_attached_file','2022/01/Retail.jpg'),(984,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:18:\"2022/01/Retail.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Retail-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Retail-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Retail-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Retail-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Retail-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Retail-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"Retail-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1395,446,'_wp_attached_file','2022/01/Sara.jpg'),(1396,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1360;s:6:\"height\";i:1088;s:4:\"file\";s:16:\"2022/01/Sara.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Sara-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"Sara-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Sara-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:16:\"Sara-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"Sara-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:17:\"Sara-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"Sara-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:16:\"Sara-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:17:\"Sara-1080x864.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:16:\"Sara-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:18:\"Sara-1280x1024.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:16:\"Sara-980x784.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:16:\"Sara-480x384.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1397,447,'_wp_attached_file','2022/01/Trena3891-Editcrop.jpg'),(1398,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1360;s:6:\"height\";i:1088;s:4:\"file\";s:30:\"2022/01/Trena3891-Editcrop.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Trena3891-Editcrop-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Trena3891-Editcrop-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:30:\"Trena3891-Editcrop-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Trena3891-Editcrop-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Trena3891-Editcrop-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Trena3891-Editcrop-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop-1080x864.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Trena3891-Editcrop-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:32:\"Trena3891-Editcrop-1280x1024.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:30:\"Trena3891-Editcrop-980x784.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"Trena3891-Editcrop-480x384.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1908,495,'_oembed_36c8cdddfd0ad43b5ec00e652c6ecb83','<blockquote class=\"wp-embedded-content\" data-secret=\"TjqGH5jn4s\"><a href=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Business Citation Forum\" src=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=WGpLiFnYbC#?secret=TjqGH5jn4s\" data-secret=\"TjqGH5jn4s\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1909,495,'_oembed_time_36c8cdddfd0ad43b5ec00e652c6ecb83','1647185065'),(1910,495,'_oembed_2181ca99ea40c7e60a9515dade5b3c72','<blockquote class=\"wp-embedded-content\" data-secret=\"qzDunmVFGV\"><a href=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Business Citation Local\" src=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=oVHDEFXnVh#?secret=qzDunmVFGV\" data-secret=\"qzDunmVFGV\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(650,94,'_yoast_wpseo_content_score','90'),(651,94,'_yoast_wpseo_estimated-reading-time-minutes',''),(652,94,'_yoast_wpseo_meta-robots-noindex','2'),(985,322,'_wp_attached_file','2022/01/agriculture.jpg'),(986,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:23:\"2022/01/agriculture.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"agriculture-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"agriculture-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"agriculture-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"agriculture-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"agriculture-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"agriculture-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:23:\"agriculture-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1974,495,'_oembed_time_0691a7375393c447acb278457f136907','1647185125'),(1975,495,'_oembed_9ac38ad8a33916ff69692c1853b3f201','<blockquote class=\"wp-embedded-content\" data-secret=\"F2if37qbsp\"><a href=\"https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Great Local Listing\" src=\"https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=QuHArQv6PV#?secret=F2if37qbsp\" data-secret=\"F2if37qbsp\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1976,495,'_oembed_time_9ac38ad8a33916ff69692c1853b3f201','1647185127'),(1977,495,'_oembed_919a29fd38c9dd30526561471eebc76a','<blockquote class=\"wp-embedded-content\" data-secret=\"Ou4dXUSQA6\"><a href=\"https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Great Local Listings\" src=\"https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=02FgAxepJj#?secret=Ou4dXUSQA6\" data-secret=\"Ou4dXUSQA6\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1978,495,'_oembed_time_919a29fd38c9dd30526561471eebc76a','1647185129'),(1979,495,'_oembed_29dabafc8cf77f39f0338e8af0e0afa0','<blockquote class=\"wp-embedded-content\" data-secret=\"6D8vdC4R8h\"><a href=\"https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Head Biz Listing\" src=\"https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=IxU9lbOgLr#?secret=6D8vdC4R8h\" data-secret=\"6D8vdC4R8h\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2012,495,'_oembed_time_8118163bb62627fa6b7bdef4ee4c6705','1647185148'),(2013,495,'_oembed_612346f07490e29582fc7d524595a04d','<blockquote class=\"wp-embedded-content\" data-secret=\"sScMBJGRqM\"><a href=\"https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Listing Top Biz\" src=\"https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=iCeDqsVFDS#?secret=sScMBJGRqM\" data-secret=\"sScMBJGRqM\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2014,495,'_oembed_time_612346f07490e29582fc7d524595a04d','1647185150'),(2015,495,'_oembed_83dc1456df2a4a8c28191d9ff4eaba20','<blockquote class=\"wp-embedded-content\" data-secret=\"pX2oln4x54\"><a href=\"https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Biz Directories\" src=\"https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=xlIUSwrN62#?secret=pX2oln4x54\" data-secret=\"pX2oln4x54\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2016,495,'_oembed_time_83dc1456df2a4a8c28191d9ff4eaba20','1647185151'),(2017,495,'_oembed_7d10baa1f4d52121969f97b6862a6391','<blockquote class=\"wp-embedded-content\" data-secret=\"pX9hUuy6il\"><a href=\"https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Biz Listings AZ\" src=\"https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=FKIcH8r7gh#?secret=pX9hUuy6il\" data-secret=\"pX9hUuy6il\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1314,236,'_wp_old_date','2022-01-10'),(1393,445,'_wp_attached_file','2022/01/Julie.jpg'),(1394,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1360;s:6:\"height\";i:1088;s:4:\"file\";s:17:\"2022/01/Julie.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Julie-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"Julie-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Julie-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:17:\"Julie-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"Julie-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"Julie-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"Julie-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"Julie-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"Julie-1080x864.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"Julie-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:19:\"Julie-1280x1024.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:17:\"Julie-980x784.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:17:\"Julie-480x384.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1911,495,'_oembed_time_2181ca99ea40c7e60a9515dade5b3c72','1647185067'),(1912,495,'_oembed_d359fcac63936503de0633175a8a2166','<blockquote class=\"wp-embedded-content\" data-secret=\"q9bPPx48os\"><a href=\"https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Business Citation Squad\" src=\"https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=KPptEEFWNK#?secret=q9bPPx48os\" data-secret=\"q9bPPx48os\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1913,495,'_oembed_time_d359fcac63936503de0633175a8a2166','1647185068'),(1914,495,'_oembed_f5e0e15319e4b557fb929a9841664ce8','<blockquote class=\"wp-embedded-content\" data-secret=\"gDmy5wPSrm\"><a href=\"https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Business Listing Heaven\" src=\"https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=dB8R2mcNWw#?secret=gDmy5wPSrm\" data-secret=\"gDmy5wPSrm\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1620,109,'_yoast_wpseo_linkdex','67'),(1482,239,'_wp_old_date','2022-01-16'),(1483,373,'_wp_old_date','2022-01-16'),(1484,375,'_wp_old_date','2022-01-16'),(1485,374,'_wp_old_date','2022-01-16'),(1486,247,'_wp_old_date','2022-01-16'),(2006,495,'_oembed_time_7ac1bf2ca47f8a77c1bb8bc1e5e4e774','1647185143'),(2007,495,'_oembed_7b247196515857875953466bb4ea0d6d','<blockquote class=\"wp-embedded-content\" data-secret=\"cXsszGXnvX\"><a href=\"https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Leading Biz Listings\" src=\"https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=QRXbQhJiHD#?secret=cXsszGXnvX\" data-secret=\"cXsszGXnvX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1996,495,'_oembed_time_ffd963f070bed6c3f9206502ebecec00','1647185137'),(1842,495,'_oembed_d86982021fa1687f3f0dbd315d3e2823','<blockquote class=\"wp-embedded-content\" data-secret=\"7pPF4Vxt3D\"><a href=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Listing\" src=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=iU8V5VuHeP#?secret=7pPF4Vxt3D\" data-secret=\"7pPF4Vxt3D\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1356,331,'_et_builder_dynamic_assets_loading_attr_threshold','6'),(1919,495,'_oembed_time_bd67a5c1d8e2c5e4a639d74e0958e2b4','1647185074'),(1920,495,'_oembed_cd66aa8251fe2dc4936fafeaedc000c2','<blockquote class=\"wp-embedded-content\" data-secret=\"42EqeFTnpD\"><a href=\"https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Camelot Local Citations\" src=\"https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ZXzEkagMD2#?secret=42EqeFTnpD\" data-secret=\"42EqeFTnpD\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1311,104,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(1877,495,'_oembed_time_95758f486bc6c77c0c6373806b4eb763','1647185040'),(847,255,'_menu_item_type','post_type'),(848,255,'_menu_item_menu_item_parent','0'),(849,255,'_menu_item_object_id','118'),(850,255,'_menu_item_object','page'),(851,255,'_menu_item_target',''),(852,255,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(853,255,'_menu_item_xfn',''),(854,255,'_menu_item_url',''),(2008,495,'_oembed_time_7b247196515857875953466bb4ea0d6d','1647185145'),(2009,495,'_oembed_5d38d7761d8740e35fd8ac7e0930358a','<blockquote class=\"wp-embedded-content\" data-secret=\"CJ2eMWfq0Y\"><a href=\"https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Leading Local Listing\" src=\"https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=xrVJpXkg4j#?secret=CJ2eMWfq0Y\" data-secret=\"CJ2eMWfq0Y\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2010,495,'_oembed_time_5d38d7761d8740e35fd8ac7e0930358a','1647185147'),(2011,495,'_oembed_8118163bb62627fa6b7bdef4ee4c6705','<blockquote class=\"wp-embedded-content\" data-secret=\"MAoszGFTOi\"><a href=\"https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Leading Local Listings\" src=\"https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4vzL8cgyB4#?secret=MAoszGFTOi\" data-secret=\"MAoszGFTOi\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(898,118,'_yoast_wpseo_estimated-reading-time-minutes','1'),(1948,495,'_oembed_time_ee4d843d303fef3a18d0cb6b596d1d1e','1647185102'),(1949,495,'_oembed_dae2acdf23d0128b467c8e84d95f21a5','<blockquote class=\"wp-embedded-content\" data-secret=\"gu7zaU0tio\"><a href=\"https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Essential Biz Listings\" src=\"https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=WZlWw2aYdq#?secret=gu7zaU0tio\" data-secret=\"gu7zaU0tio\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1423,109,'_yoast_wpseo_focuskw','about'),(1424,109,'_yoast_wpseo_metadesc','About Capital Bookkeeping Co. Our focus is on bookkeeping, payroll, tax remittances, bank statements and receipts'),(1863,495,'_oembed_time_b89122b11b543461b122e3df8a10d5f0','1647185017'),(1828,495,'_oembed_40c232e31d2e9f9e3b291e86cfdee9cd','<blockquote class=\"wp-embedded-content\" data-secret=\"plw9KpTV8F\"><a href=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bell Biz Listing\" src=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=eQUrAsqgbV#?secret=plw9KpTV8F\" data-secret=\"plw9KpTV8F\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1702,495,'_oembed_a6939174483bdb008a69c25af9a83be4','<blockquote class=\"wp-embedded-content\" data-secret=\"6cd618Qv9D\"><a href=\"https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; 123 Biz Directory\" src=\"https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=2YC0KIqmB0#?secret=6cd618Qv9D\" data-secret=\"6cd618Qv9D\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1703,495,'_oembed_time_a6939174483bdb008a69c25af9a83be4','1647184879'),(1704,495,'_oembed_304ce367def7feb29fb64e991eb0d254','<blockquote class=\"wp-embedded-content\" data-secret=\"XtPT85DPci\"><a href=\"https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; 123 Biz Listing\" src=\"https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=5pWMSATOpl#?secret=XtPT85DPci\" data-secret=\"XtPT85DPci\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1705,495,'_oembed_time_304ce367def7feb29fb64e991eb0d254','1647184881'),(1706,495,'_oembed_5c74472f61c728322162fbd1af79d230','<blockquote class=\"wp-embedded-content\" data-secret=\"YJbgB4Uhnz\"><a href=\"https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; 123 Biz Listings\" src=\"https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=d0HI83gvGF#?secret=YJbgB4Uhnz\" data-secret=\"YJbgB4Uhnz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1707,495,'_oembed_time_5c74472f61c728322162fbd1af79d230','1647184883'),(1708,495,'_oembed_3a0c5a02e0314f66600065582bfdba58','<blockquote class=\"wp-embedded-content\" data-secret=\"PJipDQh9YZ\"><a href=\"https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; 123 Company Directory\" src=\"https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4JlVWYaAkW#?secret=PJipDQh9YZ\" data-secret=\"PJipDQh9YZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1709,495,'_oembed_time_3a0c5a02e0314f66600065582bfdba58','1647184883'),(1710,495,'_oembed_449c72c72e9b70690a64825238eb76f3','<blockquote class=\"wp-embedded-content\" data-secret=\"pbCO6fGuKg\"><a href=\"https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; 123 Local Directory\" src=\"https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=dHoqKIgeSO#?secret=pbCO6fGuKg\" data-secret=\"pbCO6fGuKg\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1711,495,'_oembed_time_449c72c72e9b70690a64825238eb76f3','1647184884'),(1712,495,'_oembed_ab396a150b68211c248b3d9df2961023','<blockquote class=\"wp-embedded-content\" data-secret=\"bcMxmGWFpQ\"><a href=\"https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; 123 Local Listing\" src=\"https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=xKcbZ3RbXr#?secret=bcMxmGWFpQ\" data-secret=\"bcMxmGWFpQ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1713,495,'_oembed_time_ab396a150b68211c248b3d9df2961023','1647184886'),(1714,495,'_oembed_928d217d8f89bcbcbd3619a6333c5139','<blockquote class=\"wp-embedded-content\" data-secret=\"uMezxy9kfQ\"><a href=\"https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; A1 Biz Citations\" src=\"https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=xz7PSmQmR9#?secret=uMezxy9kfQ\" data-secret=\"uMezxy9kfQ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1715,495,'_oembed_time_928d217d8f89bcbcbd3619a6333c5139','1647184888'),(1716,495,'_oembed_f96bf5b054a53018c40341a178121c2f','<blockquote class=\"wp-embedded-content\" data-secret=\"9SFn6fqITT\"><a href=\"https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; A1 Biz Listing\" src=\"https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=9y3951D0Ff#?secret=9SFn6fqITT\" data-secret=\"9SFn6fqITT\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1717,495,'_oembed_time_f96bf5b054a53018c40341a178121c2f','1647184889'),(1718,495,'_oembed_6a04b98da1d08785713582c11b7c0b84','<blockquote class=\"wp-embedded-content\" data-secret=\"oySz0I3UwZ\"><a href=\"https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; A1 Biz Listings\" src=\"https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=LEBsOYTaqM#?secret=oySz0I3UwZ\" data-secret=\"oySz0I3UwZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1719,495,'_oembed_time_6a04b98da1d08785713582c11b7c0b84','1647184890'),(1720,495,'_oembed_68c112a02244726a3d94412410b26d85','<blockquote class=\"wp-embedded-content\" data-secret=\"UvdOKUzlGC\"><a href=\"https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; A1 Biz Lists\" src=\"https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=gbKiINa7ql#?secret=UvdOKUzlGC\" data-secret=\"UvdOKUzlGC\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1964,495,'_oembed_time_1b30fd4f0aa954fe8d7caf8f5b3c416c','1647185118'),(1965,495,'_oembed_d86f8c2c4c2c751fb9609c3ac3961daf','<blockquote class=\"wp-embedded-content\" data-secret=\"tixjs74LEy\"><a href=\"https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; First Business Directory\" src=\"https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=EGpq9UpWng#?secret=tixjs74LEy\" data-secret=\"tixjs74LEy\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1966,495,'_oembed_time_d86f8c2c4c2c751fb9609c3ac3961daf','1647185119'),(1967,495,'_oembed_cd65aeae986af5d3cbbbca50b9a80986','<blockquote class=\"wp-embedded-content\" data-secret=\"CEP3bATshY\"><a href=\"https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; First Local Listings\" src=\"https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=VZVGjulHxO#?secret=CEP3bATshY\" data-secret=\"CEP3bATshY\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(888,265,'_wp_attached_file','2022/01/Capital-Bookkeeping-Company-logo.png'),(889,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:762;s:6:\"height\";i:167;s:4:\"file\";s:44:\"2022/01/Capital-Bookkeeping-Company-logo.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Capital-Bookkeeping-Company-logo-300x66.png\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Capital-Bookkeeping-Company-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Capital-Bookkeeping-Company-logo-400x167.png\";s:5:\"width\";i:400;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Capital-Bookkeeping-Company-logo-400x167.png\";s:5:\"width\";i:400;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Capital-Bookkeeping-Company-logo-510x167.png\";s:5:\"width\";i:510;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Capital-Bookkeeping-Company-logo-400x167.png\";s:5:\"width\";i:400;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"Capital-Bookkeeping-Company-logo-480x105.png\";s:5:\"width\";i:480;s:6:\"height\";i:105;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:{}}}'),(661,215,'_et_pb_built_for_post_type','page'),(662,216,'_et_pb_built_for_post_type','page'),(663,217,'_et_pb_built_for_post_type','page'),(1292,8,'_et_builder_dynamic_assets_loading_attr_threshold','6'),(1479,472,'_menu_item_url',''),(1487,255,'_wp_old_date','2022-01-16'),(1759,495,'_oembed_time_edce5043d6cbe560bc753a4cc3dbd137','1647184926'),(1760,495,'_oembed_f00534311420fa6c8378f83985f63ba9','<blockquote class=\"wp-embedded-content\" data-secret=\"2upaOunm17\"><a href=\"https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Accurate Biz Directory\" src=\"https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=O7u79VWsN5#?secret=2upaOunm17\" data-secret=\"2upaOunm17\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1761,495,'_oembed_time_f00534311420fa6c8378f83985f63ba9','1647184929'),(1762,495,'_oembed_36f1828f6ebb418e7f6f35c748bf53da','<blockquote class=\"wp-embedded-content\" data-secret=\"aTGtrKGNMy\"><a href=\"https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Accurrate Biz List\" src=\"https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=6mSvphBh29#?secret=aTGtrKGNMy\" data-secret=\"aTGtrKGNMy\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1763,495,'_oembed_time_36f1828f6ebb418e7f6f35c748bf53da','1647184930'),(1764,495,'_oembed_3a481ffa1c94f2efeacb51a7d46f6a73','<blockquote class=\"wp-embedded-content\" data-secret=\"ZaszPlrFT1\"><a href=\"https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Ace Biz Listings\" src=\"https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=wPCDGYFEG2#?secret=ZaszPlrFT1\" data-secret=\"ZaszPlrFT1\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1376,109,'_yoast_wpseo_estimated-reading-time-minutes',''),(1377,109,'_yoast_wpseo_meta-robots-noindex','2'),(1997,495,'_oembed_10a2e92b59bd5d6b9f55fbe6a6ceb1d0','<blockquote class=\"wp-embedded-content\" data-secret=\"zgs2J4JA18\"><a href=\"https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; KC Biz Directory\" src=\"https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=HA0yRS1DKn#?secret=zgs2J4JA18\" data-secret=\"zgs2J4JA18\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1921,495,'_oembed_time_cd66aa8251fe2dc4936fafeaedc000c2','1647185075'),(1922,495,'_oembed_0cea9b193ad31490d0a3ce0048ac7dc0','<blockquote class=\"wp-embedded-content\" data-secret=\"116dFo1K26\"><a href=\"https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Casey Biz Directory\" src=\"https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=3f7SrShiPC#?secret=116dFo1K26\" data-secret=\"116dFo1K26\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1864,495,'_oembed_85146c96e1bd355acd602d4704da0f4e','{{unknown}}'),(1865,495,'_oembed_74cbae4748f017a029430f87ce60cd85','{{unknown}}'),(1866,495,'_oembed_37cbb450220c64a0c91f678331ebaec4','<blockquote class=\"wp-embedded-content\" data-secret=\"OY45XJgCtm\"><a href=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Near By Citations\" src=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=dlbPxuAlFa#?secret=OY45XJgCtm\" data-secret=\"OY45XJgCtm\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1867,495,'_oembed_time_37cbb450220c64a0c91f678331ebaec4','1647185031'),(1868,495,'_oembed_60a4cbdd889e4adff3aab9e8d0b4a9a1','<blockquote class=\"wp-embedded-content\" data-secret=\"9rX4QfVgMe\"><a href=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Online Biz Directory\" src=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=DWtWv3iCjz#?secret=9rX4QfVgMe\" data-secret=\"9rX4QfVgMe\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1869,495,'_oembed_time_60a4cbdd889e4adff3aab9e8d0b4a9a1','1647185032'),(1870,495,'_oembed_70deabdd040abe6b1e21b94b3be45e0b','<blockquote class=\"wp-embedded-content\" data-secret=\"VDhi76dUPI\"><a href=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best  USA Biz Directory\" src=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=9BiUSHS4Z9#?secret=VDhi76dUPI\" data-secret=\"VDhi76dUPI\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1871,495,'_oembed_time_70deabdd040abe6b1e21b94b3be45e0b','1647185035'),(1872,495,'_oembed_893af6349014adf94395a2c6c69c9782','<blockquote class=\"wp-embedded-content\" data-secret=\"Pbq2Yy3mWt\"><a href=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best USA Biz Listing\" src=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=zHTkMmXQxy#?secret=Pbq2Yy3mWt\" data-secret=\"Pbq2Yy3mWt\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1873,495,'_oembed_time_893af6349014adf94395a2c6c69c9782','1647185036'),(1874,495,'_oembed_f53288ad15b821ec6c5b508222a8daaa','<blockquote class=\"wp-embedded-content\" data-secret=\"KpD96D7tEA\"><a href=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best US Biz\" src=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4TNsYsRmo7#?secret=KpD96D7tEA\" data-secret=\"KpD96D7tEA\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1472,472,'_menu_item_type','post_type'),(1473,472,'_menu_item_menu_item_parent','0'),(1474,472,'_menu_item_object_id','109'),(1475,472,'_menu_item_object','page'),(1476,472,'_menu_item_target',''),(1477,472,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1478,472,'_menu_item_xfn',''),(1876,495,'_oembed_95758f486bc6c77c0c6373806b4eb763','<blockquote class=\"wp-embedded-content\" data-secret=\"tiM9WTbgwl\"><a href=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best US Business\" src=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=IeSeMFRZnt#?secret=tiM9WTbgwl\" data-secret=\"tiM9WTbgwl\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1012,331,'_et_pb_built_for_post_type','page'),(1013,331,'_et_pb_ab_subjects',''),(1014,331,'_et_pb_enable_shortcode_tracking',''),(1015,331,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"331\" /]'),(1016,331,'_et_pb_custom_css',''),(1017,331,'_et_pb_gutter_width','3'),(1022,331,'_yoast_wpseo_content_score','30'),(1019,331,'_global_colors_info','{}'),(1020,331,'_et_builder_version','VB|Divi|4.14.5'),(1021,331,'_et_pb_show_page_creation','off'),(1915,495,'_oembed_time_f5e0e15319e4b557fb929a9841664ce8','1647185071'),(1916,495,'_oembed_1d70b2edbbda4193ac6fc809271252d6','<blockquote class=\"wp-embedded-content\" data-secret=\"DvioT43bPv\"><a href=\"https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; BZ Biz Directory\" src=\"https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=DbcJxWzqvo#?secret=DvioT43bPv\" data-secret=\"DvioT43bPv\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1917,495,'_oembed_time_1d70b2edbbda4193ac6fc809271252d6','1647185072'),(1106,331,'_yoast_wpseo_focuskw','Bookkeeping'),(1107,331,'_yoast_wpseo_metadesc','Kelowna bookkeeping services for corporations, proprietorships, and non profits. We manage your payroll, T4, T4As, Accounts Receivable & Payable'),(1108,331,'_yoast_wpseo_linkdex','58'),(2020,495,'_oembed_time_941f46b6af58e05cc0e44ed8fa7437d2','1647185153'),(994,326,'_wp_attached_file','2022/01/chiropractic.jpg'),(995,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:24:\"2022/01/chiropractic.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"chiropractic-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"chiropractic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"chiropractic-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"chiropractic-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"chiropractic-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"chiropractic-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"chiropractic-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1938,495,'_oembed_time_bcbc301a12edecd55ba24d0d38f19752','1647185097'),(1939,495,'_oembed_d4505d3a9c3b9e9e66dfdbc90836e1f8','<blockquote class=\"wp-embedded-content\" data-secret=\"5nXmEjuYNh\"><a href=\"https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Complete Biz Listings\" src=\"https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=yo8dVuUuSw#?secret=5nXmEjuYNh\" data-secret=\"5nXmEjuYNh\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1940,495,'_oembed_time_d4505d3a9c3b9e9e66dfdbc90836e1f8','1647185097'),(1941,495,'_oembed_ab776238cf0ea5bc09a57854bda05409','<blockquote class=\"wp-embedded-content\" data-secret=\"vzgE9TVhfq\"><a href=\"https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Complete Local Listings\" src=\"https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=wWZDewPGDv#?secret=vzgE9TVhfq\" data-secret=\"vzgE9TVhfq\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1942,495,'_oembed_time_ab776238cf0ea5bc09a57854bda05409','1647185098'),(1943,495,'_oembed_de95513f3611b8e467446dc292ba08f4','<blockquote class=\"wp-embedded-content\" data-secret=\"z1MIg72x8k\"><a href=\"https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Elite Biz Listings\" src=\"https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=C0lQHkhzVC#?secret=z1MIg72x8k\" data-secret=\"z1MIg72x8k\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(968,314,'_wp_attached_file','2022/01/bookkeeping.jpg'),(927,301,'_wp_attached_file','2022/01/Website-Non-Profit-scaled.jpg'),(928,301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1282;s:4:\"file\";s:37:\"2022/01/Website-Non-Profit-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Website-Non-Profit-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Website-Non-Profit-1024x513.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Website-Non-Profit-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:30:\"Website-Non-Profit-768x385.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Website-Non-Profit-1536x769.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"Website-Non-Profit-2048x1026.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Website-Non-Profit-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Website-Non-Profit-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Website-Non-Profit-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Website-Non-Profit-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Website-Non-Profit-1080x541.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Website-Non-Profit-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Website-Non-Profit-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:31:\"Website-Non-Profit-1280x641.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:30:\"Website-Non-Profit-980x491.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"Website-Non-Profit-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:\"original_image\";s:22:\"Website-Non-Profit.jpg\";}'),(835,250,'_wp_attached_file','2022/01/Capital-Bookkeeping-bW.jpg'),(836,250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:709;s:4:\"file\";s:34:\"2022/01/Capital-Bookkeeping-bW.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-bW-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Capital-Bookkeeping-bW-1024x378.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-bW-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:34:\"Capital-Bookkeeping-bW-768x284.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Capital-Bookkeeping-bW-1536x567.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-bW-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Capital-Bookkeeping-bW-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-bW-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-bW-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Capital-Bookkeeping-bW-1080x399.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-bW-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"Capital-Bookkeeping-bW-1280x473.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-bW-980x362.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"Capital-Bookkeeping-bW-480x177.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1935,495,'_oembed_time_be24207b9d940dc834b40e557d96a7e4','1647185089'),(1936,495,'_oembed_f9c237eba51eea992cd2ceded8e7a652','{{unknown}}'),(1937,495,'_oembed_bcbc301a12edecd55ba24d0d38f19752','<blockquote class=\"wp-embedded-content\" data-secret=\"O588QONPJz\"><a href=\"https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Citations Biz\" src=\"https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=bNB16zRYIE#?secret=O588QONPJz\" data-secret=\"O588QONPJz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1283,118,'_et_builder_dynamic_assets_loading_attr_threshold','6'),(1933,495,'_oembed_time_2085d52e19f5e34265d411481ee82e9f','1647185086'),(1934,495,'_oembed_be24207b9d940dc834b40e557d96a7e4','<blockquote class=\"wp-embedded-content\" data-secret=\"kd9JJL4yt3\"><a href=\"https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Citation Biz\" src=\"https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=HL2W49Lovg#?secret=kd9JJL4yt3\" data-secret=\"kd9JJL4yt3\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1346,94,'_et_builder_dynamic_assets_loading_attr_threshold','19'),(1980,495,'_oembed_time_29dabafc8cf77f39f0338e8af0e0afa0','1647185130'),(1981,495,'_oembed_2b897a87c817518a4fe58bbccd7a8246','<blockquote class=\"wp-embedded-content\" data-secret=\"XzDFxFvwvB\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Hero Local Listings\" src=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=PQpIZ0g22h#?secret=XzDFxFvwvB\" data-secret=\"XzDFxFvwvB\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1843,495,'_oembed_time_d86982021fa1687f3f0dbd315d3e2823','1647185000'),(1844,495,'_oembed_ae42958781ad297145225985a61c13aa','<blockquote class=\"wp-embedded-content\" data-secret=\"ZDeP6oVO4M\"><a href=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Listings\" src=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=gTORiKahUE#?secret=ZDeP6oVO4M\" data-secret=\"ZDeP6oVO4M\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1845,495,'_oembed_time_ae42958781ad297145225985a61c13aa','1647185003'),(1846,495,'_oembed_fcd919207122f5e29c9b14ab01a67408','<blockquote class=\"wp-embedded-content\" data-secret=\"JKOMvX2LLT\"><a href=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Listings Ever\" src=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Ga0yR7cP3I#?secret=JKOMvX2LLT\" data-secret=\"JKOMvX2LLT\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1847,495,'_oembed_time_fcd919207122f5e29c9b14ab01a67408','1647185004'),(1848,495,'_oembed_c49c2c100013b248702757141cfc1090','<blockquote class=\"wp-embedded-content\" data-secret=\"vWS87Ncjej\"><a href=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Business Citation\" src=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=U8doIfghkF#?secret=vWS87Ncjej\" data-secret=\"vWS87Ncjej\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1849,495,'_oembed_time_c49c2c100013b248702757141cfc1090','1647185007'),(1850,495,'_oembed_8326148764796786d92b1223e5673ba9','<blockquote class=\"wp-embedded-content\" data-secret=\"tZPPJKsnFY\"><a href=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Business Citations\" src=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=5951czsmwr#?secret=tZPPJKsnFY\" data-secret=\"tZPPJKsnFY\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1851,495,'_oembed_time_8326148764796786d92b1223e5673ba9','1647185008'),(1852,495,'_oembed_66378c6022a6e9a64f7ab44412788f79','<blockquote class=\"wp-embedded-content\" data-secret=\"1wgXGH7405\"><a href=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Business Listing USA\" src=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=AGR1BH7mgT#?secret=1wgXGH7405\" data-secret=\"1wgXGH7405\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1853,495,'_oembed_time_66378c6022a6e9a64f7ab44412788f79','1647185010'),(1854,495,'_oembed_880e9e22ea236d2b1630594fb561be42','<blockquote class=\"wp-embedded-content\" data-secret=\"MZKhoVEXj8\"><a href=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Company Directories\" src=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=GYK7IUkMeq#?secret=MZKhoVEXj8\" data-secret=\"MZKhoVEXj8\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1855,495,'_oembed_time_880e9e22ea236d2b1630594fb561be42','1647185011'),(1856,495,'_oembed_9dee2a69737dbbdd55c490648aefbd8f','<blockquote class=\"wp-embedded-content\" data-secret=\"7H14j49QxH\"><a href=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Company Directory\" src=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=6RlzwCIkXb#?secret=7H14j49QxH\" data-secret=\"7H14j49QxH\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1857,495,'_oembed_time_9dee2a69737dbbdd55c490648aefbd8f','1647185013'),(1858,495,'_oembed_c519c5f3ef6d4b5b44f0d81273312eae','<blockquote class=\"wp-embedded-content\" data-secret=\"XDLf3dRkUb\"><a href=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Local Biz Citation\" src=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=D15gcYtYly#?secret=XDLf3dRkUb\" data-secret=\"XDLf3dRkUb\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1859,495,'_oembed_time_c519c5f3ef6d4b5b44f0d81273312eae','1647185014'),(1860,495,'_oembed_3a80f8dda5be3e117dbf001b4e921dd5','<blockquote class=\"wp-embedded-content\" data-secret=\"Q4IVPSm50c\"><a href=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Local Biz Listing\" src=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hsnIrOk1it#?secret=Q4IVPSm50c\" data-secret=\"Q4IVPSm50c\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1861,495,'_oembed_time_3a80f8dda5be3e117dbf001b4e921dd5','1647185016'),(1862,495,'_oembed_b89122b11b543461b122e3df8a10d5f0','<blockquote class=\"wp-embedded-content\" data-secret=\"Ls2sQOzzMH\"><a href=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Local Biz Listings\" src=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=i4s7E8uoi9#?secret=Ls2sQOzzMH\" data-secret=\"Ls2sQOzzMH\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1836,495,'_oembed_a121228e76840b2e8bfc665243242198','<blockquote class=\"wp-embedded-content\" data-secret=\"ndoaB8Nn5I\"><a href=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bells Local Lists\" src=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=QlQ9hzQt9F#?secret=ndoaB8Nn5I\" data-secret=\"ndoaB8Nn5I\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1156,237,'_yoast_wpseo_metadesc','Read Capital Bookkeeping Co reviews and testimonials from our clients. We offer accurate and affordable bookkeeping services for our clients'),(1157,237,'_yoast_wpseo_linkdex','50'),(1326,417,'_wp_attached_file','2022/01/Trena3891-Editcrop1.jpg'),(1327,417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1081;s:4:\"file\";s:31:\"2022/01/Trena3891-Editcrop1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop1-278x300.jpg\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Trena3891-Editcrop1-947x1024.jpg\";s:5:\"width\";i:947;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop1-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:\"Trena3891-Editcrop1-768x830.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Trena3891-Editcrop1-1000x675.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:32:\"Trena3891-Editcrop1-980x1059.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1059;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop1-480x519.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1881,495,'_oembed_time_66ef6d053761e7967e6e155c0249e4b2','1647185043'),(1882,495,'_oembed_edcfb34100694ade541a35db3b10ebdc','<blockquote class=\"wp-embedded-content\" data-secret=\"7ZzrUBIpVV\"><a href=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Big Girl Business Listings\" src=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=sfNkwNc94B#?secret=7ZzrUBIpVV\" data-secret=\"7ZzrUBIpVV\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1883,495,'_oembed_time_edcfb34100694ade541a35db3b10ebdc','1647185045'),(1884,495,'_oembed_2aa92fad0436077a637e91cd517bc801','<blockquote class=\"wp-embedded-content\" data-secret=\"ctrvvdYKLF\"><a href=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Big Red Business Listings\" src=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=XRqTbi4lAj#?secret=ctrvvdYKLF\" data-secret=\"ctrvvdYKLF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1885,495,'_oembed_time_2aa92fad0436077a637e91cd517bc801','1647185047'),(1886,495,'_oembed_a12f19c4bd1a22f98dd7693c0e125b0e','<blockquote class=\"wp-embedded-content\" data-secret=\"ZEIQcrN8hI\"><a href=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Citations\" src=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=C4wccaCrg9#?secret=ZEIQcrN8hI\" data-secret=\"ZEIQcrN8hI\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1887,495,'_oembed_time_a12f19c4bd1a22f98dd7693c0e125b0e','1647185048'),(1888,495,'_oembed_ba0edec1966527dfa256bfea6e0e9616','<blockquote class=\"wp-embedded-content\" data-secret=\"1HrOj86bQv\"><a href=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listing 120\" src=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=OhbXtLLFuq#?secret=1HrOj86bQv\" data-secret=\"1HrOj86bQv\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1889,495,'_oembed_time_ba0edec1966527dfa256bfea6e0e9616','1647185050'),(1890,495,'_oembed_12bc329fb48ef64ec0e92bafe9e58dfe','<blockquote class=\"wp-embedded-content\" data-secret=\"d0qyn6yDtu\"><a href=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listing R Us\" src=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=582o1cExGK#?secret=d0qyn6yDtu\" data-secret=\"d0qyn6yDtu\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1891,495,'_oembed_time_12bc329fb48ef64ec0e92bafe9e58dfe','1647185051'),(1892,495,'_oembed_1cdd3b8b1c4192acc473d785b0f61b0b','<blockquote class=\"wp-embedded-content\" data-secret=\"jSnOeWttfW\"><a href=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listings 123\" src=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=1tICVNokME#?secret=jSnOeWttfW\" data-secret=\"jSnOeWttfW\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1893,495,'_oembed_time_1cdd3b8b1c4192acc473d785b0f61b0b','1647185052'),(1894,495,'_oembed_2a14141424d397d1c694fb801cd25831','<blockquote class=\"wp-embedded-content\" data-secret=\"ylzpZayssA\"><a href=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listing USA\" src=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=mNSNoVWOJa#?secret=ylzpZayssA\" data-secret=\"ylzpZayssA\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1895,495,'_oembed_time_2a14141424d397d1c694fb801cd25831','1647185053'),(1896,495,'_oembed_abebb88c8d1f3e86c571edc25d800f7d','<blockquote class=\"wp-embedded-content\" data-secret=\"TQ0z5Ul7ym\"><a href=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listing USA\" src=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=SEtjos99dF#?secret=TQ0z5Ul7ym\" data-secret=\"TQ0z5Ul7ym\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1897,495,'_oembed_time_abebb88c8d1f3e86c571edc25d800f7d','1647185055'),(1898,495,'_oembed_8d2e82c3ac5580728cd71b07e922e7fd','<blockquote class=\"wp-embedded-content\" data-secret=\"mp05SBZsOj\"><a href=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Lists USA\" src=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=rMa9lhRRoR#?secret=mp05SBZsOj\" data-secret=\"mp05SBZsOj\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1618,94,'_yoast_wpseo_linkdex','47'),(1992,495,'_oembed_time_b404e29fe9965b437b90fd0ca8c81099','1647185135'),(1993,495,'_oembed_b292b3ea9731f3a22112727fb50093f8','<blockquote class=\"wp-embedded-content\" data-secret=\"jVZaMhP5V6\"><a href=\"https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Jen&#039;s Biz Listings\" src=\"https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Eth8tybPo1#?secret=jVZaMhP5V6\" data-secret=\"jVZaMhP5V6\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1052,347,'_edit_last','1'),(1053,347,'_wp_page_template','default'),(1054,347,'_et_pb_post_hide_nav','default'),(1055,347,'_et_pb_page_layout','et_right_sidebar'),(1056,347,'_et_pb_side_nav','off'),(1057,347,'_et_pb_use_builder','on'),(1058,347,'_et_pb_first_image',''),(1059,347,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_0 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Payroll and Government Remittances</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\" data-form_unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\">\n				\n				\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"http://www.capitalbookkeepingco.com/index.php/?s=captcha\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">14 + 3</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"14\" data-second_digit=\"3\" value=\"\" name=\"et_pb_contact_captcha_0\" data-required_mark=\"required\" autocomplete=\"off\">\n				</p>\n			</div>\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\">Submit</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"b0e9d66b22\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/index.php/?s=captcha\" />\n					</form>\n				</div>\n			</div>\n			\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">If you are a business owner and have employees working under you, it is expected of you to have a payroll. What should it consist of? It should have your employee names and information, the number of hours worked, and other payment details such as wages, deductions, etc. As a business owner, paysheet processes can be time-consuming and laborious especially if you engage in manual processing. To take the stress and burden off Paysheet and government remittances of your shoulder, we are here to render exceptional services to business owners in the province of British Columbia. <br />\nGetting a clear understanding and adhering to the Federal and Provincial paysheet deductions can be complicated for most people. To save your business from any compliance issue, working with a firm with years of experience in managing paysheet would help a lot. When you use our services, we’ll make the process seamless by submitting government remittances electronically on your behalf. We are currently working with different businesses in British Columbia and their amazing feedbacks say a lot about we assist employers.</p>\n<p>Why choose Capital Bookkeeping Co.  for your employee payroll and remittances?<br />\nWe pride ourselves as one of the best financial and accounting firms in the province of British Columbia. It is our delight to see employers pay their employees simply and suitably. We have years of experience in the financial industry and are responsible for managing dozens of small and medium-sized businesses – managing everything about paysheet processing and other financial calculations. <br />\nWe try to make everything concise and easy to understand by employers. Our experts are super friendly and are ready to solve any issue that has to do with paysheet and government settlements. Below are some of the services you will get from us when you get in touch with us today:</p>\n<p>Payroll preparation<br />\nT4, T4A, T5018 Tax Slip Preparation<br />\nGroup health benefits administration<br />\nCRA Receiver General tax payments<br />\nWorkers’ compensation preparation and submission</p>\n<p>We do everything within our reach to ensure clients’ paysheet is processed without any setbacks.<br />\nEnjoy exceptional paysheet and remittances from our professionals<br />\nIf you want to avoid any hitch in paying your employees or government settlements, we are the number one go-to financial firm in British Columbia. We have partnered with hundreds of businesses and would be glad to help you get rid of any guesswork in your business finance. Get in touch with us today and we will put in extra effort to provide you with amazing financial services. </div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(1060,347,'_et_pb_truncate_post_date','2022-05-11 08:01:11'),(1061,347,'_et_pb_old_content',''),(1062,347,'_yoast_wpseo_estimated-reading-time-minutes',''),(1063,347,'_edit_lock','1642255873:1'),(1064,347,'_et_pb_built_for_post_type','page'),(1065,347,'_et_pb_ab_subjects',''),(1066,347,'_et_pb_enable_shortcode_tracking',''),(1067,347,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"347\" /]'),(1068,347,'_et_pb_custom_css',''),(1069,347,'_et_pb_gutter_width','3'),(1074,347,'_yoast_wpseo_content_score','30'),(1071,347,'_global_colors_info','{}'),(1072,347,'_et_builder_version','VB|Divi|4.14.5'),(1073,347,'_et_pb_show_page_creation','off'),(1968,495,'_oembed_time_cd65aeae986af5d3cbbbca50b9a80986','1647185120'),(1969,495,'_oembed_621a057912927c296b6fe0f2efd66eec','<blockquote class=\"wp-embedded-content\" data-secret=\"pWVOktvx6U\"><a href=\"https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Flash Local Citations\" src=\"https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=d4te62FtgV#?secret=pWVOktvx6U\" data-secret=\"pWVOktvx6U\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1970,495,'_oembed_time_621a057912927c296b6fe0f2efd66eec','1647185122'),(1971,495,'_oembed_81ef7fb342cb282c15daf7dc343fa737','<blockquote class=\"wp-embedded-content\" data-secret=\"wFwZQ6L5kN\"><a href=\"https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Great Biz Listing\" src=\"https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=LcdP4LCRyt#?secret=wFwZQ6L5kN\" data-secret=\"wFwZQ6L5kN\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1110,347,'_thumbnail_id','0'),(2000,495,'_oembed_time_e60e0bb6848f45bf7e14e1f000967d95','1647185138'),(1918,495,'_oembed_bd67a5c1d8e2c5e4a639d74e0958e2b4','<blockquote class=\"wp-embedded-content\" data-secret=\"PQb6bc7BuE\"><a href=\"https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; BZ Biz Listings\" src=\"https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=laWMr5lwtg#?secret=PQb6bc7BuE\" data-secret=\"PQb6bc7BuE\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1598,89,'_yoast_wpseo_focuskw','Capital Bookkeeping Company'),(1599,89,'_yoast_wpseo_metadesc','Capital Bookkeeping Company for small and large businesses. We keep you books and accounts in order so you can bring in more business.'),(1600,89,'_yoast_wpseo_linkdex','61'),(1998,495,'_oembed_time_10a2e92b59bd5d6b9f55fbe6a6ceb1d0','1647185138'),(1999,495,'_oembed_e60e0bb6848f45bf7e14e1f000967d95','<blockquote class=\"wp-embedded-content\" data-secret=\"mlSgv3gi3q\"><a href=\"https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; KC Local Directory\" src=\"https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=rVapICAJjd#?secret=mlSgv3gi3q\" data-secret=\"mlSgv3gi3q\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1837,495,'_oembed_time_a121228e76840b2e8bfc665243242198','1647184995'),(1838,495,'_oembed_15e48c968c432e455ffb40adc0ef2299','<blockquote class=\"wp-embedded-content\" data-secret=\"fax70N3OQh\"><a href=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Citation\" src=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=NlsbIuRhID#?secret=fax70N3OQh\" data-secret=\"fax70N3OQh\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1297,347,'_et_builder_dynamic_assets_loading_attr_threshold','6'),(2021,495,'_oembed_f8d3e1a6ba1d1b2242c2dbe8a8080281','<blockquote class=\"wp-embedded-content\" data-secret=\"JpoDWV9ngd\"><a href=\"https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Biz Listings\" src=\"https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=pvl2zEMygT#?secret=JpoDWV9ngd\" data-secret=\"JpoDWV9ngd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1879,495,'_oembed_time_48805140314ff8e5374aa6d52e8dc2eb','1647185041'),(1880,495,'_oembed_66ef6d053761e7967e6e155c0249e4b2','<blockquote class=\"wp-embedded-content\" data-secret=\"r08iOhvoOz\"><a href=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Big Daddy Biz Listings\" src=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=41FhiDfZOX#?secret=r08iOhvoOz\" data-secret=\"r08iOhvoOz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1829,495,'_oembed_time_40c232e31d2e9f9e3b291e86cfdee9cd','1647184988'),(1721,495,'_oembed_time_68c112a02244726a3d94412410b26d85','1647184892'),(1722,495,'_oembed_42cff03bf6fc0b6c8325ef6a17a84fff','<blockquote class=\"wp-embedded-content\" data-secret=\"xWFyAuWMbZ\"><a href=\"https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; A1 Business List\" src=\"https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=bJ0LcouTlr#?secret=xWFyAuWMbZ\" data-secret=\"xWFyAuWMbZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1723,495,'_oembed_time_42cff03bf6fc0b6c8325ef6a17a84fff','1647184894'),(1724,495,'_oembed_a26d915af8f0c7b36f34c22c74445ca1','<blockquote class=\"wp-embedded-content\" data-secret=\"CUQ2xIIQ9W\"><a href=\"https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; A1 Business Listings\" src=\"https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ojSLT5SnDh#?secret=CUQ2xIIQ9W\" data-secret=\"CUQ2xIIQ9W\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1725,495,'_oembed_time_a26d915af8f0c7b36f34c22c74445ca1','1647184895'),(1726,495,'_oembed_057a62bb2cf0ce65f17839ac71178e86','<blockquote class=\"wp-embedded-content\" data-secret=\"zooIPojVpn\"><a href=\"https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; A1 Local Businesses\" src=\"https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=FnEEKQLMPi#?secret=zooIPojVpn\" data-secret=\"zooIPojVpn\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1727,495,'_oembed_time_057a62bb2cf0ce65f17839ac71178e86','1647184897'),(1728,495,'_oembed_64ecf75cb72f19eba7670348bb033773','<blockquote class=\"wp-embedded-content\" data-secret=\"5fhrsPIQnt\"><a href=\"https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; A1 Local Listings\" src=\"https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ZSwvgDlqPW#?secret=5fhrsPIQnt\" data-secret=\"5fhrsPIQnt\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1729,495,'_oembed_time_64ecf75cb72f19eba7670348bb033773','1647184898'),(1730,495,'_oembed_3b434a549abd61887e7a90db632e8df0','<blockquote class=\"wp-embedded-content\" data-secret=\"O3fbNLJi8K\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AAA Business Listings\" src=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ZTstHEKjxI#?secret=O3fbNLJi8K\" data-secret=\"O3fbNLJi8K\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1606,8,'_yoast_wpseo_metadesc','Professional Bookkeepers we make your bookkeeping easy! Bank & Credit card reconciliations, accounts receivable, financial statements'),(1607,8,'_yoast_wpseo_linkdex','64'),(1608,8,'_yoast_wpseo_content_score','60'),(1609,8,'_yoast_wpseo_estimated-reading-time-minutes',''),(1839,495,'_oembed_time_15e48c968c432e455ffb40adc0ef2299','1647184997'),(1840,495,'_oembed_8fc83771b39a069cbcbc2e71ee6b81f3','<blockquote class=\"wp-embedded-content\" data-secret=\"xuGIoqn0co\"><a href=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Citations\" src=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=aPhhAMzd7y#?secret=xuGIoqn0co\" data-secret=\"xuGIoqn0co\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1088,356,'_wp_attached_file','2022/01/payroll1.jpg'),(1089,356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:527;s:4:\"file\";s:20:\"2022/01/payroll1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"payroll1-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"payroll1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"payroll1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"payroll1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"payroll1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"payroll1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:20:\"payroll1-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1831,495,'_oembed_time_5bfc1d2e60192227d291833414cca4a7','1647184990'),(1832,495,'_oembed_055c9bd410944442e7736d673d67d794','<blockquote class=\"wp-embedded-content\" data-secret=\"X7FYotJeyH\"><a href=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bells Local Directory\" src=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4VMLi3R3ih#?secret=X7FYotJeyH\" data-secret=\"X7FYotJeyH\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1134,374,'_menu_item_type','post_type'),(1135,374,'_menu_item_menu_item_parent','373'),(1136,374,'_menu_item_object_id','347'),(1137,374,'_menu_item_object','page'),(1138,374,'_menu_item_target',''),(1139,374,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1140,374,'_menu_item_xfn',''),(1141,374,'_menu_item_url',''),(1153,247,'_wp_old_date','2022-01-10'),(1143,375,'_menu_item_type','post_type'),(1144,375,'_menu_item_menu_item_parent','373'),(1145,375,'_menu_item_object_id','331'),(1146,375,'_menu_item_object','page'),(1147,375,'_menu_item_target',''),(1148,375,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1149,375,'_menu_item_xfn',''),(1150,375,'_menu_item_url',''),(1154,255,'_wp_old_date','2022-01-10'),(1152,239,'_wp_old_date','2022-01-10'),(1328,418,'_wp_attached_file','2022/01/Trena3891-Editcrop2.jpg'),(1329,418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1360;s:6:\"height\";i:1088;s:4:\"file\";s:31:\"2022/01/Trena3891-Editcrop2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop2-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Trena3891-Editcrop2-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop2-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:\"Trena3891-Editcrop2-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Trena3891-Editcrop2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Trena3891-Editcrop2-1080x864.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:33:\"Trena3891-Editcrop2-1280x1024.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop2-980x784.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Trena3891-Editcrop2-480x384.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1899,495,'_oembed_time_8d2e82c3ac5580728cd71b07e922e7fd','1647185057'),(1900,495,'_oembed_15fad9e87779e9ff4e43b49d107cf3ce','<blockquote class=\"wp-embedded-content\" data-secret=\"tRLKhujtdk\"><a href=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Local Lists\" src=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=a3hRvgw3RD#?secret=tRLKhujtdk\" data-secret=\"tRLKhujtdk\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1901,495,'_oembed_time_15fad9e87779e9ff4e43b49d107cf3ce','1647185059'),(1902,495,'_oembed_35feed698e4c5f04eda82251670632b1','<blockquote class=\"wp-embedded-content\" data-secret=\"23raJ2bY9F\"><a href=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Boss Biz Listings\" src=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=r11g3J8lMu#?secret=23raJ2bY9F\" data-secret=\"23raJ2bY9F\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1830,495,'_oembed_5bfc1d2e60192227d291833414cca4a7','<blockquote class=\"wp-embedded-content\" data-secret=\"f0r3zmrv8X\"><a href=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bell Biz Directory\" src=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hYcgulMkWC#?secret=f0r3zmrv8X\" data-secret=\"f0r3zmrv8X\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1731,495,'_oembed_time_3b434a549abd61887e7a90db632e8df0','1647184900'),(1732,495,'_oembed_5117bd5c9b544e577d25de827c4e3da9','<blockquote class=\"wp-embedded-content\" data-secret=\"7E53orIprZ\"><a href=\"https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AAA Biz Listing\" src=\"https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=J2bEL0LvBF#?secret=7E53orIprZ\" data-secret=\"7E53orIprZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1733,495,'_oembed_time_5117bd5c9b544e577d25de827c4e3da9','1647184902'),(1734,495,'_oembed_57ca44617ea80f88155fa701907122f9','<blockquote class=\"wp-embedded-content\" data-secret=\"rg4p7oaoGL\"><a href=\"https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AAA Biz Listings\" src=\"https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=6tc6BdcUCp#?secret=rg4p7oaoGL\" data-secret=\"rg4p7oaoGL\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1735,495,'_oembed_time_57ca44617ea80f88155fa701907122f9','1647184903'),(1736,495,'_oembed_ca2601ae94ea647a6958fc4a9ec392c4','<blockquote class=\"wp-embedded-content\" data-secret=\"QPUMunxLa4\"><a href=\"https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AAA Local Biz Listings\" src=\"https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=BxsVt5Wb9t#?secret=QPUMunxLa4\" data-secret=\"QPUMunxLa4\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1737,495,'_oembed_time_ca2601ae94ea647a6958fc4a9ec392c4','1647184905'),(1738,495,'_oembed_d6d2eb41b9d1969be8cbd9bc1253addc','<blockquote class=\"wp-embedded-content\" data-secret=\"hoQHcrt4DZ\"><a href=\"https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AAA Local Biz Listings\" src=\"https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Gpt8bDWB95#?secret=hoQHcrt4DZ\" data-secret=\"hoQHcrt4DZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1739,495,'_oembed_time_d6d2eb41b9d1969be8cbd9bc1253addc','1647184907'),(1740,495,'_oembed_205ee8099dee797036b9a5e1c828253b','<blockquote class=\"wp-embedded-content\" data-secret=\"8wTRvlBjEO\"><a href=\"https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AAA Local Listings\" src=\"https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=i4wX9wAVwv#?secret=8wTRvlBjEO\" data-secret=\"8wTRvlBjEO\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1741,495,'_oembed_time_205ee8099dee797036b9a5e1c828253b','1647184909'),(1742,495,'_oembed_0883d86c4d47ae1cdbc6fde314a923fa','<blockquote class=\"wp-embedded-content\" data-secret=\"PIBoMFelYo\"><a href=\"https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; ABC Biz Citation\" src=\"https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=HkRl77PWFH#?secret=PIBoMFelYo\" data-secret=\"PIBoMFelYo\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1743,495,'_oembed_time_0883d86c4d47ae1cdbc6fde314a923fa','1647184911'),(1744,495,'_oembed_e05b5822197e3815873cce4ff3a836cf','<blockquote class=\"wp-embedded-content\" data-secret=\"aGfo4Bd6Ut\"><a href=\"https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; ABC Biz Citations\" src=\"https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=2g4AxVD3iM#?secret=aGfo4Bd6Ut\" data-secret=\"aGfo4Bd6Ut\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1745,495,'_oembed_time_e05b5822197e3815873cce4ff3a836cf','1647184913'),(1746,495,'_oembed_afd66b8120cbf0c3131660dde1a2fa91','<blockquote class=\"wp-embedded-content\" data-secret=\"O0fRiwsbo1\"><a href=\"https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; ABC Directory\" src=\"https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=kvJrJF5T9i#?secret=O0fRiwsbo1\" data-secret=\"O0fRiwsbo1\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1747,495,'_oembed_time_afd66b8120cbf0c3131660dde1a2fa91','1647184914'),(1748,495,'_oembed_0e67fdf82617862f6de9bd1c84466f96','<blockquote class=\"wp-embedded-content\" data-secret=\"BlENYSAKhb\"><a href=\"https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; ABC Biz Listings\" src=\"https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=q6ZjY7M9vg#?secret=BlENYSAKhb\" data-secret=\"BlENYSAKhb\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1749,495,'_oembed_time_0e67fdf82617862f6de9bd1c84466f96','1647184916'),(1750,495,'_oembed_f5f0a5cbd7758bf1016744263b87ed43','<blockquote class=\"wp-embedded-content\" data-secret=\"dhwGVzNcuY\"><a href=\"https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; ABC Local Citation\" src=\"https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=x7nynXHcfZ#?secret=dhwGVzNcuY\" data-secret=\"dhwGVzNcuY\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1751,495,'_oembed_time_f5f0a5cbd7758bf1016744263b87ed43','1647184919'),(1752,495,'_oembed_9a0526212303156742de217b779f4474','<blockquote class=\"wp-embedded-content\" data-secret=\"5pL8pQAbo6\"><a href=\"https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; ABC Local Citations\" src=\"https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=sXm0lnOplY#?secret=5pL8pQAbo6\" data-secret=\"5pL8pQAbo6\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1753,495,'_oembed_time_9a0526212303156742de217b779f4474','1647184920'),(1754,495,'_oembed_658c89f9e6aac037f141155eaf39074c','<blockquote class=\"wp-embedded-content\" data-secret=\"Oi1qTXs3D0\"><a href=\"https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; ABC Local Directory\" src=\"https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=lKVNJY69Lj#?secret=Oi1qTXs3D0\" data-secret=\"Oi1qTXs3D0\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1755,495,'_oembed_time_658c89f9e6aac037f141155eaf39074c','1647184923'),(1756,495,'_oembed_b8d532f9c986927698bbbf2e2c474030','<blockquote class=\"wp-embedded-content\" data-secret=\"5TTkHFvhJv\"><a href=\"https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; ABC Local Listings\" src=\"https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=UGhcU0srK3#?secret=5TTkHFvhJv\" data-secret=\"5TTkHFvhJv\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1757,495,'_oembed_time_b8d532f9c986927698bbbf2e2c474030','1647184924'),(1758,495,'_oembed_edce5043d6cbe560bc753a4cc3dbd137','<blockquote class=\"wp-embedded-content\" data-secret=\"xUQTltCqz9\"><a href=\"https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; A Biz Listing\" src=\"https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Tjp2iTAQnL#?secret=xUQTltCqz9\" data-secret=\"xUQTltCqz9\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1634,495,'_edit_lock','1692822042:2'),(1635,495,'_edit_last','1'),(1636,495,'_wp_page_template','default'),(1637,495,'_et_pb_post_hide_nav','default'),(1638,495,'_et_pb_page_layout','et_right_sidebar'),(1639,495,'_et_pb_side_nav','off'),(1640,495,'_et_pb_use_builder','on'),(1641,495,'_et_pb_first_image',''),(1642,495,'_et_pb_truncate_post',''),(1643,495,'_et_pb_truncate_post_date',''),(1644,495,'_et_pb_old_content',''),(1645,495,'_yoast_wpseo_estimated-reading-time-minutes',''),(1646,495,'_et_pb_built_for_post_type','page'),(1647,495,'_et_pb_ab_subjects',''),(1648,495,'_et_pb_enable_shortcode_tracking',''),(1649,495,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"495\" /]'),(1650,495,'_et_pb_custom_css',''),(1651,495,'_et_pb_gutter_width','3'),(1656,495,'_yoast_wpseo_content_score','30'),(1653,495,'_global_colors_info','{}'),(1654,495,'_et_builder_version','VB|Divi|4.14.9'),(1655,495,'_et_pb_show_page_creation','off'),(1994,495,'_oembed_time_b292b3ea9731f3a22112727fb50093f8','1647185136'),(1665,495,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(1995,495,'_oembed_ffd963f070bed6c3f9206502ebecec00','<blockquote class=\"wp-embedded-content\" data-secret=\"7nug98AtLa\"><a href=\"https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Jen&#039;s Local Listings\" src=\"https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Da3BdSJ7zC#?secret=7nug98AtLa\" data-secret=\"7nug98AtLa\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1835,495,'_oembed_time_3086ae4ad22964343d8c79b005ef710d','1647184993'),(1803,495,'_oembed_time_acdb7e26d8b784560947e2e3be316563','1647184967'),(1804,495,'_oembed_387266d91399c92c9afaab1004b86afc','<blockquote class=\"wp-embedded-content\" data-secret=\"s9QsU41KC0\"><a href=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Business List\" src=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=VsGRM5j8Yv#?secret=s9QsU41KC0\" data-secret=\"s9QsU41KC0\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1805,495,'_oembed_time_387266d91399c92c9afaab1004b86afc','1647184969'),(1806,495,'_oembed_c86b1a10b2164524a9c65a59de1c8d2d','<blockquote class=\"wp-embedded-content\" data-secret=\"vWswfiQl8N\"><a href=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Business Lists\" src=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=65amA7FNNl#?secret=vWswfiQl8N\" data-secret=\"vWswfiQl8N\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1807,495,'_oembed_time_c86b1a10b2164524a9c65a59de1c8d2d','1647184970'),(1808,495,'_oembed_3cedca2d199f769c6d8cdda671794032','<blockquote class=\"wp-embedded-content\" data-secret=\"9GyrXk5rQV\"><a href=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Local Biz Listings\" src=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ybShZEAgm5#?secret=9GyrXk5rQV\" data-secret=\"9GyrXk5rQV\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1809,495,'_oembed_time_3cedca2d199f769c6d8cdda671794032','1647184972'),(1810,495,'_oembed_1e3a889e849ea0a475532dc668e9b8b7','<blockquote class=\"wp-embedded-content\" data-secret=\"RwbJcnPdx2\"><a href=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Local Directory\" src=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hVlPBNFG8U#?secret=RwbJcnPdx2\" data-secret=\"RwbJcnPdx2\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1811,495,'_oembed_time_1e3a889e849ea0a475532dc668e9b8b7','1647184973'),(1812,495,'_oembed_a28ae40fd7bb68e918d684c253981c38','<blockquote class=\"wp-embedded-content\" data-secret=\"u37nILnHzz\"><a href=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listing\" src=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hIyUBKisNb#?secret=u37nILnHzz\" data-secret=\"u37nILnHzz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1813,495,'_oembed_time_a28ae40fd7bb68e918d684c253981c38','1647184974'),(1814,495,'_oembed_08f942bad3967232f9ef50853e3179ec','<blockquote class=\"wp-embedded-content\" data-secret=\"UYYwTpW5x9\"><a href=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Local Listings\" src=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=TFikrS3SSI#?secret=UYYwTpW5x9\" data-secret=\"UYYwTpW5x9\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1815,495,'_oembed_time_08f942bad3967232f9ef50853e3179ec','1647184976'),(1816,495,'_oembed_469f896d950db177d9a496d3fd8b5b80','<blockquote class=\"wp-embedded-content\" data-secret=\"SMBxrMnGJj\"><a href=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Local Lists\" src=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=vF9leptZLJ#?secret=SMBxrMnGJj\" data-secret=\"SMBxrMnGJj\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1817,495,'_oembed_time_469f896d950db177d9a496d3fd8b5b80','1647184978'),(1818,495,'_oembed_65c82a6b645c987ed0b50eb50ffda069','<blockquote class=\"wp-embedded-content\" data-secret=\"109N4KpGh4\"><a href=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bailey Biz Directory\" src=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=NRLOvZYoMi#?secret=109N4KpGh4\" data-secret=\"109N4KpGh4\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1819,495,'_oembed_time_65c82a6b645c987ed0b50eb50ffda069','1647184980'),(1820,495,'_oembed_b8821742dfdf60cd4714a4c5432418b0','<blockquote class=\"wp-embedded-content\" data-secret=\"BytiA2EPIs\"><a href=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bailey Biz Listings\" src=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=TBRgdAv9ar#?secret=BytiA2EPIs\" data-secret=\"BytiA2EPIs\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1821,495,'_oembed_time_b8821742dfdf60cd4714a4c5432418b0','1647184981'),(1822,495,'_oembed_589e8cd73ad44166052040f89b2008db','<blockquote class=\"wp-embedded-content\" data-secret=\"7F2uHo6Mba\"><a href=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bailey Local Listings\" src=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ED6HyBnM7Y#?secret=7F2uHo6Mba\" data-secret=\"7F2uHo6Mba\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1823,495,'_oembed_time_589e8cd73ad44166052040f89b2008db','1647184983'),(1824,495,'_oembed_9d068355c2b7201401066ac3da327c04','<blockquote class=\"wp-embedded-content\" data-secret=\"eQUnLtxS4V\"><a href=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bailey&#039;s Biz Listings\" src=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=VAL97aAFa5#?secret=eQUnLtxS4V\" data-secret=\"eQUnLtxS4V\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1825,495,'_oembed_time_9d068355c2b7201401066ac3da327c04','1647184985'),(1826,495,'_oembed_7f019d91671daefc234201038852acce','<blockquote class=\"wp-embedded-content\" data-secret=\"zfkjaVX8mr\"><a href=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Baileys Local Directory\" src=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=1GaiJZjB5L#?secret=zfkjaVX8mr\" data-secret=\"zfkjaVX8mr\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1827,495,'_oembed_time_7f019d91671daefc234201038852acce','1647184987'),(1795,495,'_oembed_time_dbc6cfa102eda986fafb1274acc65846','1647184961'),(1796,495,'_oembed_b96aed521c529dccde5f7d7018d78cb9','<blockquote class=\"wp-embedded-content\" data-secret=\"yoRyUC6tYK\"><a href=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Automated Local Listings\" src=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=TJRAOISezg#?secret=yoRyUC6tYK\" data-secret=\"yoRyUC6tYK\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1797,495,'_oembed_time_b96aed521c529dccde5f7d7018d78cb9','1647184963'),(1798,495,'_oembed_25656b52283a08084829a78733c6fc00','<blockquote class=\"wp-embedded-content\" data-secret=\"2tbQEOkXmC\"><a href=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Biz Directory\" src=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Lwb6FbkKJD#?secret=2tbQEOkXmC\" data-secret=\"2tbQEOkXmC\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1799,495,'_oembed_time_25656b52283a08084829a78733c6fc00','1647184964'),(1800,495,'_oembed_0e72fbcb06314659d6cf840cd84aae36','<blockquote class=\"wp-embedded-content\" data-secret=\"XoCgrttlFa\"><a href=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZBiz Listing\" src=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=tNSJhYDPtN#?secret=XoCgrttlFa\" data-secret=\"XoCgrttlFa\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1801,495,'_oembed_time_0e72fbcb06314659d6cf840cd84aae36','1647184966'),(1802,495,'_oembed_acdb7e26d8b784560947e2e3be316563','<blockquote class=\"wp-embedded-content\" data-secret=\"NrSXSpAoDp\"><a href=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Biz Listings\" src=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=uEHrEllKlU#?secret=NrSXSpAoDp\" data-secret=\"NrSXSpAoDp\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1413,78,'_et_builder_dynamic_assets_loading_attr_threshold','2'),(1982,495,'_oembed_time_2b897a87c817518a4fe58bbccd7a8246','1647185131'),(1983,495,'_oembed_2c33ce250bb679171cce750ceb050a70','<blockquote class=\"wp-embedded-content\" data-secret=\"u1R8YacCNJ\"><a href=\"https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Hero Biz Directory\" src=\"https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=D6g7M1xw6c#?secret=u1R8YacCNJ\" data-secret=\"u1R8YacCNJ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1984,495,'_oembed_time_2c33ce250bb679171cce750ceb050a70','1647185132'),(1985,495,'_oembed_cba2a87c7ff9af4ad03617994abc8b25','<blockquote class=\"wp-embedded-content\" data-secret=\"x7zb8sBaQk\"><a href=\"https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Hero Biz Listings\" src=\"https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=wAZ8gZ1Qjr#?secret=x7zb8sBaQk\" data-secret=\"x7zb8sBaQk\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1986,495,'_oembed_time_cba2a87c7ff9af4ad03617994abc8b25','1647185132'),(1987,495,'_oembed_5ff66da01bb2a38b7f9fe38a94921235','<blockquote class=\"wp-embedded-content\" data-secret=\"diW31nbVuv\"><a href=\"https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Hero Local Directory\" src=\"https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=W8XbjuupRS#?secret=diW31nbVuv\" data-secret=\"diW31nbVuv\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1988,495,'_oembed_time_5ff66da01bb2a38b7f9fe38a94921235','1647185133'),(1989,495,'_oembed_d88b1c40bd24e048f881d1a5ba4b7683','<blockquote class=\"wp-embedded-content\" data-secret=\"ykkG5lrHci\"><a href=\"https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Impressive Local Citations\" src=\"https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=EoHOGkkF2n#?secret=ykkG5lrHci\" data-secret=\"ykkG5lrHci\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1990,495,'_oembed_time_d88b1c40bd24e048f881d1a5ba4b7683','1647185134'),(1991,495,'_oembed_b404e29fe9965b437b90fd0ca8c81099','<blockquote class=\"wp-embedded-content\" data-secret=\"AKX04AT8AQ\"><a href=\"https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Jen&#039;s Biz Directory\" src=\"https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=k9weh4mTTV#?secret=AKX04AT8AQ\" data-secret=\"AKX04AT8AQ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1771,495,'_oembed_time_7491179b2c096404bed42db6af761eb4','1647184938'),(1772,495,'_oembed_cf1d15bec541a4decf2e2f08ba1822a3','<blockquote class=\"wp-embedded-content\" data-secret=\"8D13gfZw7s\"><a href=\"https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Biz Listings\" src=\"https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=iUVKQ3hDUS#?secret=8D13gfZw7s\" data-secret=\"8D13gfZw7s\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1773,495,'_oembed_time_cf1d15bec541a4decf2e2f08ba1822a3','1647184941'),(1774,495,'_oembed_5f09fc024e0c3bcbd887945c86bb7e53','<blockquote class=\"wp-embedded-content\" data-secret=\"V3kTlXsrVx\"><a href=\"https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Biz Lists\" src=\"https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=MXOe94DXBv#?secret=V3kTlXsrVx\" data-secret=\"V3kTlXsrVx\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1775,495,'_oembed_time_5f09fc024e0c3bcbd887945c86bb7e53','1647184943'),(1776,495,'_oembed_3cf33f7b7746213dcbbd0798ea38978a','<blockquote class=\"wp-embedded-content\" data-secret=\"8AIA0kDcw3\"><a href=\"https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Citation\" src=\"https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=HrtrwLpixW#?secret=8AIA0kDcw3\" data-secret=\"8AIA0kDcw3\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1777,495,'_oembed_time_3cf33f7b7746213dcbbd0798ea38978a','1647184945'),(1778,495,'_oembed_48ebbefd226f3481dcdd11819fc18538','<blockquote class=\"wp-embedded-content\" data-secret=\"zEhlB88wCr\"><a href=\"https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Citations\" src=\"https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=j1MXS439EY#?secret=zEhlB88wCr\" data-secret=\"zEhlB88wCr\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1779,495,'_oembed_time_48ebbefd226f3481dcdd11819fc18538','1647184946'),(1780,495,'_oembed_3b1a16db490f2f90cb342de316d2cb9c','<blockquote class=\"wp-embedded-content\" data-secret=\"b0JgAReQ9B\"><a href=\"https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Local Biz\" src=\"https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=cKhWCLi9ca#?secret=b0JgAReQ9B\" data-secret=\"b0JgAReQ9B\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1781,495,'_oembed_time_3b1a16db490f2f90cb342de316d2cb9c','1647184948'),(1782,495,'_oembed_ac0011149b6529970eda0387d49c5cee','<blockquote class=\"wp-embedded-content\" data-secret=\"bTtBFVWaMO\"><a href=\"https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Local Citations\" src=\"https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=e834AWUDdr#?secret=bTtBFVWaMO\" data-secret=\"bTtBFVWaMO\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1783,495,'_oembed_time_ac0011149b6529970eda0387d49c5cee','1647184951'),(1784,495,'_oembed_b44c6303214d570bbc08eac9e28a792e','<blockquote class=\"wp-embedded-content\" data-secret=\"EgC6xJ6vb8\"><a href=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Local Listing\" src=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=MUSQJzHzEV#?secret=EgC6xJ6vb8\" data-secret=\"EgC6xJ6vb8\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1785,495,'_oembed_time_b44c6303214d570bbc08eac9e28a792e','1647184954'),(1786,495,'_oembed_f1197fdeceea6435df8f09d15c67f3ee','<blockquote class=\"wp-embedded-content\" data-secret=\"h7dSpGo3Cy\"><a href=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Andy&#039;s Biz Listing\" src=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=zdwcXt9upY#?secret=h7dSpGo3Cy\" data-secret=\"h7dSpGo3Cy\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1787,495,'_oembed_time_f1197fdeceea6435df8f09d15c67f3ee','1647184955'),(1788,495,'_oembed_12a302c1f6708566e4fa7cc63150b765','<blockquote class=\"wp-embedded-content\" data-secret=\"fxYYIxaG1n\"><a href=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Andy&#039;s Biz Listings\" src=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=sCMvJNqt92#?secret=fxYYIxaG1n\" data-secret=\"fxYYIxaG1n\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1789,495,'_oembed_time_12a302c1f6708566e4fa7cc63150b765','1647184957'),(1790,495,'_oembed_e141446baa236441fc79c17d80bd435f','<blockquote class=\"wp-embedded-content\" data-secret=\"eZ8Hc310cL\"><a href=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Andy&#039;s Local Listing\" src=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hc0PwLwXFw#?secret=eZ8Hc310cL\" data-secret=\"eZ8Hc310cL\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1791,495,'_oembed_time_e141446baa236441fc79c17d80bd435f','1647184958'),(1792,495,'_oembed_96933ad51e4c950efc3c67d2417ad03b','<blockquote class=\"wp-embedded-content\" data-secret=\"hqUWyeSx72\"><a href=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Angie Biz List\" src=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=KybZTxlyKm#?secret=hqUWyeSx72\" data-secret=\"hqUWyeSx72\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(1793,495,'_oembed_time_96933ad51e4c950efc3c67d2417ad03b','1647184960'),(1794,495,'_oembed_dbc6cfa102eda986fafb1274acc65846','<blockquote class=\"wp-embedded-content\" data-secret=\"prGhy7u5HW\"><a href=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Authentic Citations\" src=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=NBuEoZGHDS#?secret=prGhy7u5HW\" data-secret=\"prGhy7u5HW\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2022,495,'_oembed_time_f8d3e1a6ba1d1b2242c2dbe8a8080281','1647185155'),(2023,495,'_oembed_dec47138928a65631866a8b4e81f9e27','<blockquote class=\"wp-embedded-content\" data-secret=\"9U3HcAfwTq\"><a href=\"https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Business Citation\" src=\"https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=k5rsUmyUWO#?secret=9U3HcAfwTq\" data-secret=\"9U3HcAfwTq\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2024,495,'_oembed_time_dec47138928a65631866a8b4e81f9e27','1647185156'),(2025,495,'_oembed_8f89809a1f224cd2fd3516a388e809ce','<blockquote class=\"wp-embedded-content\" data-secret=\"Mapq7B1BL7\"><a href=\"https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Business Citation Bits\" src=\"https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=RaYrns0ME0#?secret=Mapq7B1BL7\" data-secret=\"Mapq7B1BL7\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2026,495,'_oembed_time_8f89809a1f224cd2fd3516a388e809ce','1647185158'),(2027,495,'_oembed_c024a339512de2e70e65e10148f42ef8','<blockquote class=\"wp-embedded-content\" data-secret=\"9cFTrnD13K\"><a href=\"https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Business Citing\" src=\"https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=pdiuqgTLNh#?secret=9cFTrnD13K\" data-secret=\"9cFTrnD13K\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2028,495,'_oembed_time_c024a339512de2e70e65e10148f42ef8','1647185160'),(2029,495,'_oembed_19c61503817611e49c8ba4c2075fd950','<blockquote class=\"wp-embedded-content\" data-secret=\"q2VzjYm5r4\"><a href=\"https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Business Directory List\" src=\"https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=FKfzB3XB43#?secret=q2VzjYm5r4\" data-secret=\"q2VzjYm5r4\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2030,495,'_oembed_time_19c61503817611e49c8ba4c2075fd950','1647185161'),(2031,495,'_oembed_b3f2f198387243f51c2b8a74fb6df1b3','<blockquote class=\"wp-embedded-content\" data-secret=\"XoQphdgagI\"><a href=\"https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Business Directory Lists\" src=\"https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=FPaBZcSs3w#?secret=XoQphdgagI\" data-secret=\"XoQphdgagI\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2032,495,'_oembed_time_b3f2f198387243f51c2b8a74fb6df1b3','1647185161'),(2033,495,'_oembed_0c08dabf981b6d7477e898ee431e2838','<blockquote class=\"wp-embedded-content\" data-secret=\"QJytiRfJWB\"><a href=\"https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Citation Board\" src=\"https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=B736sOGkJO#?secret=QJytiRfJWB\" data-secret=\"QJytiRfJWB\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2034,495,'_oembed_time_0c08dabf981b6d7477e898ee431e2838','1647185163'),(2035,495,'_oembed_edadd067d739da3b41d14cfe31d227ae','<blockquote class=\"wp-embedded-content\" data-secret=\"1Vhx9kd1Qy\"><a href=\"https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Citation Forum\" src=\"https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=oDigGoFEfa#?secret=1Vhx9kd1Qy\" data-secret=\"1Vhx9kd1Qy\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2036,495,'_oembed_time_edadd067d739da3b41d14cfe31d227ae','1647185164'),(2037,495,'_oembed_603f3538b56fb3b9f1d99c01784ee62c','<blockquote class=\"wp-embedded-content\" data-secret=\"6SwGuCfIOB\"><a href=\"https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Citation Guru\" src=\"https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=XKZCcJteJ9#?secret=6SwGuCfIOB\" data-secret=\"6SwGuCfIOB\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2038,495,'_oembed_time_603f3538b56fb3b9f1d99c01784ee62c','1647185166'),(2039,495,'_oembed_85d1e462fe362bdac70dfc14699e2af5','<blockquote class=\"wp-embedded-content\" data-secret=\"nlvE1lehfz\"><a href=\"https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Citations Guru\" src=\"https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=IPYYPH8BH8#?secret=nlvE1lehfz\" data-secret=\"nlvE1lehfz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2040,495,'_oembed_time_85d1e462fe362bdac70dfc14699e2af5','1647185168'),(2041,495,'_oembed_cf2635b8ca899efbfb59fa59c578f342','<blockquote class=\"wp-embedded-content\" data-secret=\"bTrPBKhppG\"><a href=\"https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Citation Squad\" src=\"https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=LMlNxG3PpK#?secret=bTrPBKhppG\" data-secret=\"bTrPBKhppG\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2042,495,'_oembed_time_cf2635b8ca899efbfb59fa59c578f342','1647185170'),(2043,495,'_oembed_3e4bca7322c5ac90dfa80661c8e23252','<blockquote class=\"wp-embedded-content\" data-secret=\"c3Dti0h7oa\"><a href=\"https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Directory USA\" src=\"https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=sPA0D48tgv#?secret=c3Dti0h7oa\" data-secret=\"c3Dti0h7oa\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2044,495,'_oembed_time_3e4bca7322c5ac90dfa80661c8e23252','1647185171'),(2045,495,'_oembed_fa0eeb6e85f0986c76a879df2d9db5dc','<blockquote class=\"wp-embedded-content\" data-secret=\"xO20s9unZz\"><a href=\"https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listing Daddy\" src=\"https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=xj0wJhh6vn#?secret=xO20s9unZz\" data-secret=\"xO20s9unZz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2046,495,'_oembed_time_fa0eeb6e85f0986c76a879df2d9db5dc','1647185172'),(2047,495,'_oembed_6e7372a54e1ce71ce419aa67c34f77ad','<blockquote class=\"wp-embedded-content\" data-secret=\"uUGShIKX9Z\"><a href=\"https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listing Heaven\" src=\"https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=SQSmJX9qKc#?secret=uUGShIKX9Z\" data-secret=\"uUGShIKX9Z\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2048,495,'_oembed_time_6e7372a54e1ce71ce419aa67c34f77ad','1647185174'),(2049,495,'_oembed_bb9774941b3552472a6f796f8688df49','<blockquote class=\"wp-embedded-content\" data-secret=\"x0DWGvFUtO\"><a href=\"https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listing Near Me\" src=\"https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=xqGE27LkD0#?secret=x0DWGvFUtO\" data-secret=\"x0DWGvFUtO\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2050,495,'_oembed_time_bb9774941b3552472a6f796f8688df49','1647185176'),(2051,495,'_oembed_bc94a9f861cc2871d18ee5a05eaabe33','<blockquote class=\"wp-embedded-content\" data-secret=\"UXwixjjq8N\"><a href=\"https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listing R Us\" src=\"https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=YWcZrkawk8#?secret=UXwixjjq8N\" data-secret=\"UXwixjjq8N\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2052,495,'_oembed_time_bc94a9f861cc2871d18ee5a05eaabe33','1647185178'),(2053,495,'_oembed_8a261350d155bf37a1de6b4c705186fd','<blockquote class=\"wp-embedded-content\" data-secret=\"n4KZFMfdzX\"><a href=\"https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listings 123\" src=\"https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=IC6oIJQXg6#?secret=n4KZFMfdzX\" data-secret=\"n4KZFMfdzX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2054,495,'_oembed_time_8a261350d155bf37a1de6b4c705186fd','1647185179'),(2055,495,'_oembed_a2da5176a2fcdff14c8b126d3873c2a4','<blockquote class=\"wp-embedded-content\" data-secret=\"vHuT4M4ghs\"><a href=\"https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listing Team\" src=\"https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=IEYvKnq3T5#?secret=vHuT4M4ghs\" data-secret=\"vHuT4M4ghs\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2056,495,'_oembed_time_a2da5176a2fcdff14c8b126d3873c2a4','1647185180'),(2057,495,'_oembed_01861f60aa771c08935e441f04d024f5','<blockquote class=\"wp-embedded-content\" data-secret=\"y6DHyAKmRM\"><a href=\"https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listing U R Us\" src=\"https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=kwtTlVFaYE#?secret=y6DHyAKmRM\" data-secret=\"y6DHyAKmRM\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2058,495,'_oembed_time_01861f60aa771c08935e441f04d024f5','1647185182'),(2059,495,'_oembed_8ba54b8d8c33166e8bb80c5f748a231d','<blockquote class=\"wp-embedded-content\" data-secret=\"UrqxtziLxx\"><a href=\"https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listing USA\" src=\"https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=LIpKw6YuQd#?secret=UrqxtziLxx\" data-secret=\"UrqxtziLxx\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2060,495,'_oembed_time_8ba54b8d8c33166e8bb80c5f748a231d','1647185183'),(2061,495,'_oembed_9051bf4e34e752763733cb8e6e6ec425','<blockquote class=\"wp-embedded-content\" data-secret=\"eJbcW4sCZM\"><a href=\"https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local USA Biz Listing\" src=\"https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=eGcZ9ZBwJg#?secret=eJbcW4sCZM\" data-secret=\"eJbcW4sCZM\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2062,495,'_oembed_time_9051bf4e34e752763733cb8e6e6ec425','1647185184'),(2063,495,'_oembed_6619abf383d7ac6981ac0ecbfd52c63c','<blockquote class=\"wp-embedded-content\" data-secret=\"EREgo69m83\"><a href=\"https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Locate Citations\" src=\"https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=XSRx0zwyYy#?secret=EREgo69m83\" data-secret=\"EREgo69m83\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2064,495,'_oembed_time_6619abf383d7ac6981ac0ecbfd52c63c','1647185186'),(2065,495,'_oembed_ec0f1ba7b19cdc1939acbfcf63394663','<blockquote class=\"wp-embedded-content\" data-secret=\"Uk8TDjdvTE\"><a href=\"https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mastermind Citations\" src=\"https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=jqlqs5MNa7#?secret=Uk8TDjdvTE\" data-secret=\"Uk8TDjdvTE\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2066,495,'_oembed_time_ec0f1ba7b19cdc1939acbfcf63394663','1647185188'),(2067,495,'_oembed_68126817e5f9ec7dc438da1b2bb8c3dd','<blockquote class=\"wp-embedded-content\" data-secret=\"QiRqALLe3z\"><a href=\"https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mega Biz Lists\" src=\"https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=13lxV1FpD6#?secret=QiRqALLe3z\" data-secret=\"QiRqALLe3z\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2068,495,'_oembed_time_68126817e5f9ec7dc438da1b2bb8c3dd','1647185190'),(2069,495,'_oembed_87d40d5dfd108495569d4f7c3f1f0941','<blockquote class=\"wp-embedded-content\" data-secret=\"SVa7QqNLWF\"><a href=\"https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mega Business Listing\" src=\"https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=d0MuNUB4so#?secret=SVa7QqNLWF\" data-secret=\"SVa7QqNLWF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2070,495,'_oembed_time_87d40d5dfd108495569d4f7c3f1f0941','1647185191'),(2071,495,'_oembed_c617117e1267479c626e34d942658d0f','<blockquote class=\"wp-embedded-content\" data-secret=\"L5ygMyf0C5\"><a href=\"https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mega Business Listings\" src=\"https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=yvHvV7m5Ka#?secret=L5ygMyf0C5\" data-secret=\"L5ygMyf0C5\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2072,495,'_oembed_time_c617117e1267479c626e34d942658d0f','1647185193'),(2073,495,'_oembed_18ad98baac3c092d76b082eeea8ae3f0','<blockquote class=\"wp-embedded-content\" data-secret=\"RAJozxKOSd\"><a href=\"https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mega Local Listing\" src=\"https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=74QgLIy4Kv#?secret=RAJozxKOSd\" data-secret=\"RAJozxKOSd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2074,495,'_oembed_time_18ad98baac3c092d76b082eeea8ae3f0','1647185195'),(2075,495,'_oembed_34b89099544d0d6795c03e104456d299','<blockquote class=\"wp-embedded-content\" data-secret=\"PCCmbBXoWs\"><a href=\"https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mega Local Listings\" src=\"https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4UNbhWMWu0#?secret=PCCmbBXoWs\" data-secret=\"PCCmbBXoWs\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2076,495,'_oembed_time_34b89099544d0d6795c03e104456d299','1647185196'),(2077,495,'_oembed_5bb4701bff3c01401106424c3de06c1a','<blockquote class=\"wp-embedded-content\" data-secret=\"2P2fJ255xl\"><a href=\"https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mexter Biz Directory\" src=\"https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=8TZEsA5jwl#?secret=2P2fJ255xl\" data-secret=\"2P2fJ255xl\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2078,495,'_oembed_time_5bb4701bff3c01401106424c3de06c1a','1647185197'),(2079,495,'_oembed_f77aeb753335e6cbeda5d0e0f7e92b33','<blockquote class=\"wp-embedded-content\" data-secret=\"8aKacRsKFh\"><a href=\"https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mexter Biz Listings\" src=\"https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=6LnI8U75pA#?secret=8aKacRsKFh\" data-secret=\"8aKacRsKFh\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2080,495,'_oembed_time_f77aeb753335e6cbeda5d0e0f7e92b33','1647185198'),(2081,495,'_oembed_7377d74e94f51091f70291584c5f0c78','<blockquote class=\"wp-embedded-content\" data-secret=\"jF5gD8rwWW\"><a href=\"https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mexter Local Directory\" src=\"https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ncLUwgYBfj#?secret=jF5gD8rwWW\" data-secret=\"jF5gD8rwWW\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2082,495,'_oembed_time_7377d74e94f51091f70291584c5f0c78','1647185198'),(2083,495,'_oembed_e10755085b4837610da9abb8b6563e04','<blockquote class=\"wp-embedded-content\" data-secret=\"UE4Mr7LbLr\"><a href=\"https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Mexter Local Listings\" src=\"https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=dmXzNxziBU#?secret=UE4Mr7LbLr\" data-secret=\"UE4Mr7LbLr\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2084,495,'_oembed_time_e10755085b4837610da9abb8b6563e04','1647185199'),(2085,495,'_oembed_31c740ebb4cf286377486dc8d583a537','<blockquote class=\"wp-embedded-content\" data-secret=\"k4rDGHrLGX\"><a href=\"https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Million Local Listings\" src=\"https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=12NR7pYT0W#?secret=k4rDGHrLGX\" data-secret=\"k4rDGHrLGX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2086,495,'_oembed_time_31c740ebb4cf286377486dc8d583a537','1647185201'),(2087,495,'_oembed_0116ff43264f18cb5c1392202a7e0145','<blockquote class=\"wp-embedded-content\" data-secret=\"xCJPcC9zHx\"><a href=\"https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Name That Citation\" src=\"https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=q7DMLaafRr#?secret=xCJPcC9zHx\" data-secret=\"xCJPcC9zHx\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2088,495,'_oembed_time_0116ff43264f18cb5c1392202a7e0145','1647185203'),(2089,495,'_oembed_136c0896b58a66559a6afe4cc4a08922','<blockquote class=\"wp-embedded-content\" data-secret=\"Rb4lDfsyIS\"><a href=\"https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Nextgen Business Citations\" src=\"https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=g12Il98Es4#?secret=Rb4lDfsyIS\" data-secret=\"Rb4lDfsyIS\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2090,495,'_oembed_time_136c0896b58a66559a6afe4cc4a08922','1647185204'),(2091,495,'_oembed_77755a12fe56d7ed603ddf5bc68c2638','<blockquote class=\"wp-embedded-content\" data-secret=\"AKdTp1zji1\"><a href=\"https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Nextgen Citations\" src=\"https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=GGe9fareNV#?secret=AKdTp1zji1\" data-secret=\"AKdTp1zji1\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2092,495,'_oembed_time_77755a12fe56d7ed603ddf5bc68c2638','1647185207'),(2093,495,'_oembed_1dfcf60400e422de14756f3c150998db','<blockquote class=\"wp-embedded-content\" data-secret=\"KD7xmHzCeo\"><a href=\"https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Omni Biz Listing\" src=\"https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=A9qEflQZR6#?secret=KD7xmHzCeo\" data-secret=\"KD7xmHzCeo\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2094,495,'_oembed_time_1dfcf60400e422de14756f3c150998db','1647185208'),(2095,495,'_oembed_32c8acf2ad8063d884e0796c6efa893c','<blockquote class=\"wp-embedded-content\" data-secret=\"6QMD80QaU2\"><a href=\"https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Omni Biz Listings\" src=\"https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=l3ghs8kOSV#?secret=6QMD80QaU2\" data-secret=\"6QMD80QaU2\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2096,495,'_oembed_time_32c8acf2ad8063d884e0796c6efa893c','1647185209'),(2097,495,'_oembed_b0d85600cb87974a7b4b5ca7fb4f2dfa','<blockquote class=\"wp-embedded-content\" data-secret=\"G40sUAtnty\"><a href=\"https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Omni Biz Lists\" src=\"https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=o2m85se7Ju#?secret=G40sUAtnty\" data-secret=\"G40sUAtnty\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2098,495,'_oembed_time_b0d85600cb87974a7b4b5ca7fb4f2dfa','1647185210'),(2099,495,'_oembed_c1306da3ba8f7b6b6679e66bcf3295e8','<blockquote class=\"wp-embedded-content\" data-secret=\"btisSy3KI1\"><a href=\"https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Omni Local Biz\" src=\"https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=OYwWaHDbsI#?secret=btisSy3KI1\" data-secret=\"btisSy3KI1\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2100,495,'_oembed_time_c1306da3ba8f7b6b6679e66bcf3295e8','1647185212'),(2101,495,'_oembed_e7a2caa1c4742659e8abaffbd8fd84b3','<blockquote class=\"wp-embedded-content\" data-secret=\"4ZQ9OeKZ8i\"><a href=\"https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Omni Local Listings\" src=\"https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Rzq6ffiMud#?secret=4ZQ9OeKZ8i\" data-secret=\"4ZQ9OeKZ8i\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2102,495,'_oembed_time_e7a2caa1c4742659e8abaffbd8fd84b3','1647185213'),(2103,495,'_oembed_5514a0ab7a6303ac396cbe6aba36507a','<blockquote class=\"wp-embedded-content\" data-secret=\"wqwNwDWBAD\"><a href=\"https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Organic Local Listing\" src=\"https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=9slUgqz8cw#?secret=wqwNwDWBAD\" data-secret=\"wqwNwDWBAD\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2104,495,'_oembed_time_5514a0ab7a6303ac396cbe6aba36507a','1647185215'),(2105,495,'_oembed_c7d66502b26a6c48065b3be6ea28ac48','<blockquote class=\"wp-embedded-content\" data-secret=\"2DtbQKLNgT\"><a href=\"https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Popular Biz List\" src=\"https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=7qSIEIO0BJ#?secret=2DtbQKLNgT\" data-secret=\"2DtbQKLNgT\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2106,495,'_oembed_time_c7d66502b26a6c48065b3be6ea28ac48','1647185215'),(2107,495,'_oembed_dffbf2ffc9b4d35e95d0db51c3c485a8','<blockquote class=\"wp-embedded-content\" data-secret=\"RB25Pvmrnz\"><a href=\"https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Popular Biz Listing\" src=\"https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=yNClEAkV9g#?secret=RB25Pvmrnz\" data-secret=\"RB25Pvmrnz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2108,495,'_oembed_time_dffbf2ffc9b4d35e95d0db51c3c485a8','1647185216'),(2109,495,'_oembed_10fd254b1b7249b583a557264e4436cf','<blockquote class=\"wp-embedded-content\" data-secret=\"jcZp3KdRvT\"><a href=\"https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Popular Biz Listings\" src=\"https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=KGWyevTkpM#?secret=jcZp3KdRvT\" data-secret=\"jcZp3KdRvT\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2110,495,'_oembed_time_10fd254b1b7249b583a557264e4436cf','1647185217'),(2111,495,'_oembed_8ec741fd0b583f6e72cb8d192df5c4e8','<blockquote class=\"wp-embedded-content\" data-secret=\"Mx4odmj7GV\"><a href=\"https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Popular Biz Lists\" src=\"https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=aSRxYqBdTd#?secret=Mx4odmj7GV\" data-secret=\"Mx4odmj7GV\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2112,495,'_oembed_time_8ec741fd0b583f6e72cb8d192df5c4e8','1647185218'),(2113,495,'_oembed_9c9f803836de47846201195e35c677d0','<blockquote class=\"wp-embedded-content\" data-secret=\"W1ATkzKW3Q\"><a href=\"https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Prima Biz Listings\" src=\"https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=By32wjARiK#?secret=W1ATkzKW3Q\" data-secret=\"W1ATkzKW3Q\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2114,495,'_oembed_time_9c9f803836de47846201195e35c677d0','1647185219'),(2115,495,'_oembed_8cc3fbab9dd529eb5c17beb9583fe65b','<blockquote class=\"wp-embedded-content\" data-secret=\"yuhsWy0SIN\"><a href=\"https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Prime Biz Directory\" src=\"https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hGFD6jAe18#?secret=yuhsWy0SIN\" data-secret=\"yuhsWy0SIN\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2116,495,'_oembed_time_8cc3fbab9dd529eb5c17beb9583fe65b','1647185220'),(2117,495,'_oembed_39a364e84b96572544b01e2f57758dc5','<blockquote class=\"wp-embedded-content\" data-secret=\"uqndMbty1k\"><a href=\"https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Prime Biz Listing\" src=\"https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=wZVMtvQpwq#?secret=uqndMbty1k\" data-secret=\"uqndMbty1k\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2118,495,'_oembed_time_39a364e84b96572544b01e2f57758dc5','1647185221'),(2119,495,'_oembed_8aaf0a768817dfeba6eff63e537ee64b','<blockquote class=\"wp-embedded-content\" data-secret=\"x2ehwD7poH\"><a href=\"https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Prima Biz Listings\" src=\"https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=p7i4WUeRTk#?secret=x2ehwD7poH\" data-secret=\"x2ehwD7poH\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2120,495,'_oembed_time_8aaf0a768817dfeba6eff63e537ee64b','1647185223'),(2121,495,'_oembed_85cd9898910a8c15a60dc81bd225ce1f','<blockquote class=\"wp-embedded-content\" data-secret=\"2pIyfmr5GF\"><a href=\"https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Prime Business Listings\" src=\"https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=1g4ZKFsemK#?secret=2pIyfmr5GF\" data-secret=\"2pIyfmr5GF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2122,495,'_oembed_time_85cd9898910a8c15a60dc81bd225ce1f','1647185224'),(2123,495,'_oembed_b6b4ca7616a39d2184108580d495733b','<blockquote class=\"wp-embedded-content\" data-secret=\"aHi68YzIZJ\"><a href=\"https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Prime Local Directory\" src=\"https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=dDiiaM1W6q#?secret=aHi68YzIZJ\" data-secret=\"aHi68YzIZJ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2124,495,'_oembed_time_b6b4ca7616a39d2184108580d495733b','1647185225'),(2125,495,'_oembed_09fca06d0773939f231f67e6ffb8cd61','<blockquote class=\"wp-embedded-content\" data-secret=\"q9KJX3mLm4\"><a href=\"https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Prime Local Listing\" src=\"https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=euJASBCsY0#?secret=q9KJX3mLm4\" data-secret=\"q9KJX3mLm4\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2126,495,'_oembed_time_09fca06d0773939f231f67e6ffb8cd61','1647185226'),(2127,495,'_oembed_4d18e42db813d7c1aaf2a49dabc8b161','<blockquote class=\"wp-embedded-content\" data-secret=\"6cjFs5Nifq\"><a href=\"https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Prime Local Listings\" src=\"https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=rgwaQeAm2Y#?secret=6cjFs5Nifq\" data-secret=\"6cjFs5Nifq\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2128,495,'_oembed_time_4d18e42db813d7c1aaf2a49dabc8b161','1647185227'),(2129,495,'_oembed_cc3b014d20ce081930c91b4fb74341a8','<blockquote class=\"wp-embedded-content\" data-secret=\"CCs4Mnw3xQ\"><a href=\"https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Quality Biz Listings\" src=\"https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=J8MbELbxhF#?secret=CCs4Mnw3xQ\" data-secret=\"CCs4Mnw3xQ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2130,495,'_oembed_time_cc3b014d20ce081930c91b4fb74341a8','1647185229'),(2131,495,'_oembed_cec0ceac82f0fbd1a2f372cd3f6c58f6','<blockquote class=\"wp-embedded-content\" data-secret=\"AA9yAjxPLv\"><a href=\"https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Quick Biz Listings\" src=\"https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4ZHWIUdPRd#?secret=AA9yAjxPLv\" data-secret=\"AA9yAjxPLv\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2132,495,'_oembed_time_cec0ceac82f0fbd1a2f372cd3f6c58f6','1647185231'),(2133,495,'_oembed_b0544e4ea6539382fbaab6de9e380c77','<blockquote class=\"wp-embedded-content\" data-secret=\"PPuAZFYGuh\"><a href=\"https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Rainbow Biz Listings\" src=\"https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=g1PhN8paRC#?secret=PPuAZFYGuh\" data-secret=\"PPuAZFYGuh\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2134,495,'_oembed_time_b0544e4ea6539382fbaab6de9e380c77','1647185232'),(2135,495,'_oembed_8287c07ae7ff12ef51ddbe8ec61cda8c','<blockquote class=\"wp-embedded-content\" data-secret=\"gTlKJkDgGA\"><a href=\"https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Rainbow Local Listings\" src=\"https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=oB2wVA7F6H#?secret=gTlKJkDgGA\" data-secret=\"gTlKJkDgGA\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2136,495,'_oembed_time_8287c07ae7ff12ef51ddbe8ec61cda8c','1647185234'),(2137,495,'_oembed_54224183a1e1b11be167fba12840f607','<blockquote class=\"wp-embedded-content\" data-secret=\"oM2mlyJq4u\"><a href=\"https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; RC Biz Directory\" src=\"https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4iLyXKoOn4#?secret=oM2mlyJq4u\" data-secret=\"oM2mlyJq4u\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2138,495,'_oembed_time_54224183a1e1b11be167fba12840f607','1647185235'),(2139,495,'_oembed_bc18fb3a0aaaa554cb3a2e7bdfb6bd52','<blockquote class=\"wp-embedded-content\" data-secret=\"NZbpE9rg3Y\"><a href=\"https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; RC Biz Listings\" src=\"https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4dCZ2lNoO2#?secret=NZbpE9rg3Y\" data-secret=\"NZbpE9rg3Y\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2140,495,'_oembed_time_bc18fb3a0aaaa554cb3a2e7bdfb6bd52','1647185237'),(2141,495,'_oembed_980aab0e7a41cfa9e09d2beaff59ff3f','<blockquote class=\"wp-embedded-content\" data-secret=\"h8q59WUCDP\"><a href=\"https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; RC Local Directory\" src=\"https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4OwlDKg9D3#?secret=h8q59WUCDP\" data-secret=\"h8q59WUCDP\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2142,495,'_oembed_time_980aab0e7a41cfa9e09d2beaff59ff3f','1647185239'),(2143,495,'_oembed_a89d55aa74c27a6e62c2e3411de099a8','<blockquote class=\"wp-embedded-content\" data-secret=\"ZvgZnCOnhV\"><a href=\"https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Southern Local Listing\" src=\"https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=T1sdiUBKzX#?secret=ZvgZnCOnhV\" data-secret=\"ZvgZnCOnhV\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2144,495,'_oembed_time_a89d55aa74c27a6e62c2e3411de099a8','1647185240'),(2145,495,'_oembed_20a52a3343e3626ee42180f7e42007e2','<blockquote class=\"wp-embedded-content\" data-secret=\"DM2GoxHpSQ\"><a href=\"https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Best Biz Directories\" src=\"https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=tSHcLUlbWA#?secret=DM2GoxHpSQ\" data-secret=\"DM2GoxHpSQ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2146,495,'_oembed_time_20a52a3343e3626ee42180f7e42007e2','1647185241'),(2147,495,'_oembed_f9e74e9272e39fb75f3e0ec24f7eef0e','<blockquote class=\"wp-embedded-content\" data-secret=\"mlRBexxy4B\"><a href=\"https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Best Biz Directory\" src=\"https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=26scRw1xBC#?secret=mlRBexxy4B\" data-secret=\"mlRBexxy4B\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2148,495,'_oembed_time_f9e74e9272e39fb75f3e0ec24f7eef0e','1647185242'),(2149,495,'_oembed_be0397c122ac7864f4ca401cc65d983d','{{unknown}}'),(2150,495,'_oembed_4c6abb2350407ef4ddb85146d158541c','<blockquote class=\"wp-embedded-content\" data-secret=\"Qy4gv1RIGB\"><a href=\"https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Best Biz Listings\" src=\"https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=vrWTLg3JQJ#?secret=Qy4gv1RIGB\" data-secret=\"Qy4gv1RIGB\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2151,495,'_oembed_time_4c6abb2350407ef4ddb85146d158541c','1647185244'),(2152,495,'_oembed_f2b1f999646c288756fb9731bf009132','<blockquote class=\"wp-embedded-content\" data-secret=\"PkZhBmVVC8\"><a href=\"https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Best Biz Lists\" src=\"https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=RwnPmIISe2#?secret=PkZhBmVVC8\" data-secret=\"PkZhBmVVC8\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2153,495,'_oembed_time_f2b1f999646c288756fb9731bf009132','1647185246'),(2154,495,'_oembed_57104d5506ba197e196ba2be36b87aa2','<blockquote class=\"wp-embedded-content\" data-secret=\"hajqwMMdaF\"><a href=\"https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Best Business Directory\" src=\"https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=XDrFsoSXiU#?secret=hajqwMMdaF\" data-secret=\"hajqwMMdaF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2155,495,'_oembed_time_57104d5506ba197e196ba2be36b87aa2','1647185247'),(2156,495,'_oembed_f7529707178726fd68a5202eb21640d5','<blockquote class=\"wp-embedded-content\" data-secret=\"GEF8WeXR0m\"><a href=\"https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Best Businesslists\" src=\"https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=GeksFdHIsY#?secret=GEF8WeXR0m\" data-secret=\"GEF8WeXR0m\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2157,495,'_oembed_time_f7529707178726fd68a5202eb21640d5','1647185249'),(2158,495,'_oembed_d301b7e29a4f252c19926931008e041a','<blockquote class=\"wp-embedded-content\" data-secret=\"HnyLl1gHTQ\"><a href=\"https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Biz Listing\" src=\"https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=nKvFIgsq9b#?secret=HnyLl1gHTQ\" data-secret=\"HnyLl1gHTQ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2159,495,'_oembed_time_d301b7e29a4f252c19926931008e041a','1647185250'),(2160,495,'_oembed_394cde766534e0828f72fdfa396edc08','<blockquote class=\"wp-embedded-content\" data-secret=\"EPmnUl8oIX\"><a href=\"https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Biz Listings\" src=\"https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=CNG86eSbVG#?secret=EPmnUl8oIX\" data-secret=\"EPmnUl8oIX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2161,495,'_oembed_time_394cde766534e0828f72fdfa396edc08','1647185250'),(2162,495,'_oembed_860399a591d67f5a13d02ac998b4cd17','<blockquote class=\"wp-embedded-content\" data-secret=\"uWW9IntL4e\"><a href=\"https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Biz Lists\" src=\"https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=e6KI1jrbrh#?secret=uWW9IntL4e\" data-secret=\"uWW9IntL4e\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2163,495,'_oembed_time_860399a591d67f5a13d02ac998b4cd17','1647185251'),(2164,495,'_oembed_0d9f71ff1c787701396cf1698b332543','<blockquote class=\"wp-embedded-content\" data-secret=\"6z0VgW6mKK\"><a href=\"https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The First Directory\" src=\"https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=QI3o3mYKdG#?secret=6z0VgW6mKK\" data-secret=\"6z0VgW6mKK\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2165,495,'_oembed_time_0d9f71ff1c787701396cf1698b332543','1647185252'),(2166,495,'_oembed_d50bed1e6f0a2a1b0ae2b1fd418ae68b','<blockquote class=\"wp-embedded-content\" data-secret=\"C12kgVETVE\"><a href=\"https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Local Biz Directory\" src=\"https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=aEqmV3yQup#?secret=C12kgVETVE\" data-secret=\"C12kgVETVE\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2167,495,'_oembed_time_d50bed1e6f0a2a1b0ae2b1fd418ae68b','1647185252'),(2168,495,'_oembed_58cd1a42979b7994e2be0702d209fc89','<blockquote class=\"wp-embedded-content\" data-secret=\"mZIaH2tyHm\"><a href=\"https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The Top Business Directory\" src=\"https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=qWJk6lZWDz#?secret=mZIaH2tyHm\" data-secret=\"mZIaH2tyHm\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2169,495,'_oembed_time_58cd1a42979b7994e2be0702d209fc89','1647185254'),(2170,495,'_oembed_8ffe55083a4d086eb1962d1a20386af7','<blockquote class=\"wp-embedded-content\" data-secret=\"Nr8VdMJL54\"><a href=\"https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; The USA Biz Directory\" src=\"https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=vUyOyDrk8P#?secret=Nr8VdMJL54\" data-secret=\"Nr8VdMJL54\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2171,495,'_oembed_time_8ffe55083a4d086eb1962d1a20386af7','1647185255'),(2172,495,'_oembed_9257ac44378fe49bb7552c1a86fbcac3','<blockquote class=\"wp-embedded-content\" data-secret=\"U098mgxCCP\"><a href=\"https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Today&#039;s Best Citations\" src=\"https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=LKoZql4QWp#?secret=U098mgxCCP\" data-secret=\"U098mgxCCP\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2173,495,'_oembed_time_9257ac44378fe49bb7552c1a86fbcac3','1647185257'),(2174,495,'_oembed_887bfbcb14588ddca31b9f718c6c32a0','<blockquote class=\"wp-embedded-content\" data-secret=\"t4vqPr32kf\"><a href=\"https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top 100 Biz Listings\" src=\"https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hLqMeQFJm9#?secret=t4vqPr32kf\" data-secret=\"t4vqPr32kf\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2175,495,'_oembed_time_887bfbcb14588ddca31b9f718c6c32a0','1647185258'),(2176,495,'_oembed_367eb19b7438c5f3d6796260268820c0','<blockquote class=\"wp-embedded-content\" data-secret=\"li6mqjwCP0\"><a href=\"https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top 100 Business Listings\" src=\"https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=HVpx4jvskf#?secret=li6mqjwCP0\" data-secret=\"li6mqjwCP0\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2177,495,'_oembed_time_367eb19b7438c5f3d6796260268820c0','1647185258'),(2178,495,'_oembed_a12f19abd3ae97d52c476dfaab5d852c','<blockquote class=\"wp-embedded-content\" data-secret=\"3BlhyNjS2N\"><a href=\"https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top 100 Citations\" src=\"https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=bxdZA7ZCEQ#?secret=3BlhyNjS2N\" data-secret=\"3BlhyNjS2N\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2179,495,'_oembed_time_a12f19abd3ae97d52c476dfaab5d852c','1647185260'),(2180,495,'_oembed_ad0f989483013ca3d5a66d66667cfba1','<blockquote class=\"wp-embedded-content\" data-secret=\"PWwg33O7Y5\"><a href=\"https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top 20 Citations\" src=\"https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=caltjAD9KA#?secret=PWwg33O7Y5\" data-secret=\"PWwg33O7Y5\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2181,495,'_oembed_time_ad0f989483013ca3d5a66d66667cfba1','1647185261'),(2182,495,'_oembed_e1ae98ff78846c3fe8e95287c4cf3c06','<blockquote class=\"wp-embedded-content\" data-secret=\"NHej0Nn6vx\"><a href=\"https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top 50 Biz Citations\" src=\"https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=UVzPBqkBA8#?secret=NHej0Nn6vx\" data-secret=\"NHej0Nn6vx\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2183,495,'_oembed_time_e1ae98ff78846c3fe8e95287c4cf3c06','1647185263'),(2184,495,'_oembed_d2816b449c10ad64a44b14031afc5cb5','<blockquote class=\"wp-embedded-content\" data-secret=\"rbctazfnpS\"><a href=\"https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top 50 Business Listings\" src=\"https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=rHyTgWfU2k#?secret=rbctazfnpS\" data-secret=\"rbctazfnpS\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2185,495,'_oembed_time_d2816b449c10ad64a44b14031afc5cb5','1647185265'),(2186,495,'_oembed_621d30967a91099111a544068ed1613a','<blockquote class=\"wp-embedded-content\" data-secret=\"jlBquSgKY6\"><a href=\"https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top 50 Local Citations\" src=\"https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=JDXecgEAxe#?secret=jlBquSgKY6\" data-secret=\"jlBquSgKY6\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2187,495,'_oembed_time_621d30967a91099111a544068ed1613a','1647185267'),(2188,495,'_oembed_2f03de3ca2d8a52919ddfbffecc9c825','<blockquote class=\"wp-embedded-content\" data-secret=\"xhkUC0mVgx\"><a href=\"https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top 50 Local Listings\" src=\"https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=nm2bLouarN#?secret=xhkUC0mVgx\" data-secret=\"xhkUC0mVgx\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2189,495,'_oembed_time_2f03de3ca2d8a52919ddfbffecc9c825','1647185268'),(2190,495,'_oembed_92c56ab7e1559dfb4742c78df20b9a4b','<blockquote class=\"wp-embedded-content\" data-secret=\"5DD51jXMsQ\"><a href=\"https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top 75 Local Listings\" src=\"https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=7luIcBZLRF#?secret=5DD51jXMsQ\" data-secret=\"5DD51jXMsQ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2191,495,'_oembed_time_92c56ab7e1559dfb4742c78df20b9a4b','1647185270'),(2192,495,'_oembed_c5e2500604bd117d1161830e653be8d6','<blockquote class=\"wp-embedded-content\" data-secret=\"5wkpndBnl5\"><a href=\"https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Biz Citation\" src=\"https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=7xigq0c9G3#?secret=5wkpndBnl5\" data-secret=\"5wkpndBnl5\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2193,495,'_oembed_time_c5e2500604bd117d1161830e653be8d6','1647185272'),(2194,495,'_oembed_6551502b2b45232c1f51633c461592ed','<blockquote class=\"wp-embedded-content\" data-secret=\"oJmcGZMLhd\"><a href=\"https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Biz Citations\" src=\"https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=QLjHmcxS9P#?secret=oJmcGZMLhd\" data-secret=\"oJmcGZMLhd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2195,495,'_oembed_time_6551502b2b45232c1f51633c461592ed','1647185274'),(2196,495,'_oembed_24db77b646634160625377c40a9a21c5','<blockquote class=\"wp-embedded-content\" data-secret=\"2UmsLOmzJz\"><a href=\"https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Biz Listings\" src=\"https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=7keXlZzZkX#?secret=2UmsLOmzJz\" data-secret=\"2UmsLOmzJz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2197,495,'_oembed_time_24db77b646634160625377c40a9a21c5','1647185275'),(2198,495,'_oembed_78aa0a6607c6a15a16ce0e802869efe2','{{unknown}}'),(2199,495,'_oembed_8d4dc428c009a519f2095648acfb4af5','<blockquote class=\"wp-embedded-content\" data-secret=\"zcWGBR7BnH\"><a href=\"https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Company Directories\" src=\"https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=iBE0GjBrE0#?secret=zcWGBR7BnH\" data-secret=\"zcWGBR7BnH\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2200,495,'_oembed_time_8d4dc428c009a519f2095648acfb4af5','1647185281'),(2201,495,'_oembed_f0a2136a7bc8396677722fa0791c21d5','<blockquote class=\"wp-embedded-content\" data-secret=\"zilnirGaRX\"><a href=\"https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Company Directory\" src=\"https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=dp6O5FYoPE#?secret=zilnirGaRX\" data-secret=\"zilnirGaRX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2202,495,'_oembed_time_f0a2136a7bc8396677722fa0791c21d5','1647185282'),(2203,495,'_oembed_ab3f055b7924318f305e7a3f158257b1','<blockquote class=\"wp-embedded-content\" data-secret=\"7REa9smfIs\"><a href=\"https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Company Listing\" src=\"https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=3pf9ehqxN7#?secret=7REa9smfIs\" data-secret=\"7REa9smfIs\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2204,495,'_oembed_time_ab3f055b7924318f305e7a3f158257b1','1647185283'),(2205,495,'_oembed_1dc4f2bcb25f4908726b9a522a9e0f00','<blockquote class=\"wp-embedded-content\" data-secret=\"6Jf7dS3cUO\"><a href=\"https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Company Listings\" src=\"https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=UAtl2FiH24#?secret=6Jf7dS3cUO\" data-secret=\"6Jf7dS3cUO\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2206,495,'_oembed_time_1dc4f2bcb25f4908726b9a522a9e0f00','1647185283'),(2207,495,'_oembed_a30651b9ebdefdab99607b1a99aa80de','<blockquote class=\"wp-embedded-content\" data-secret=\"DjX8Bk3nDK\"><a href=\"https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Local Biz Listing\" src=\"https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=KFfs5cg29s#?secret=DjX8Bk3nDK\" data-secret=\"DjX8Bk3nDK\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2208,495,'_oembed_time_a30651b9ebdefdab99607b1a99aa80de','1647185285'),(2209,495,'_oembed_eeecc4154f960a1bd164916e211a7204','<blockquote class=\"wp-embedded-content\" data-secret=\"rl343Cpe4S\"><a href=\"https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Local Biz Listings\" src=\"https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=fGb8b4HI2O#?secret=rl343Cpe4S\" data-secret=\"rl343Cpe4S\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2210,495,'_oembed_time_eeecc4154f960a1bd164916e211a7204','1647185287'),(2211,495,'_oembed_ccb955425f43c6953497b8f3e22da36d','<blockquote class=\"wp-embedded-content\" data-secret=\"dwFJ8YH3pZ\"><a href=\"https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Local Biz Pros\" src=\"https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=BFeH7jybqX#?secret=dwFJ8YH3pZ\" data-secret=\"dwFJ8YH3pZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2212,495,'_oembed_time_ccb955425f43c6953497b8f3e22da36d','1647185289'),(2213,495,'_oembed_66805ea6d379698d16cdbb9d9fc256e9','<blockquote class=\"wp-embedded-content\" data-secret=\"a5XkZEmYP5\"><a href=\"https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Notch Biz Listings\" src=\"https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=vfAa7OzLRL#?secret=a5XkZEmYP5\" data-secret=\"a5XkZEmYP5\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2214,495,'_oembed_time_66805ea6d379698d16cdbb9d9fc256e9','1647185290'),(2215,495,'_oembed_e8a279c1284470958d6b971fde5a16eb','<blockquote class=\"wp-embedded-content\" data-secret=\"LqTqDlUVRh\"><a href=\"https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Rated Biz Citations\" src=\"https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=qzLvHeZaV2#?secret=LqTqDlUVRh\" data-secret=\"LqTqDlUVRh\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2216,495,'_oembed_time_e8a279c1284470958d6b971fde5a16eb','1647185296'),(2217,495,'_oembed_4a282a72ad4e0b59627ef3215f6dc072','<blockquote class=\"wp-embedded-content\" data-secret=\"Xv91NRpLmS\"><a href=\"https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Rated Biz Directory\" src=\"https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=C27mtZZhvQ#?secret=Xv91NRpLmS\" data-secret=\"Xv91NRpLmS\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2218,495,'_oembed_time_4a282a72ad4e0b59627ef3215f6dc072','1647185296'),(2219,495,'_oembed_f87db2d7994e7be2379eb9e6eec6371e','<blockquote class=\"wp-embedded-content\" data-secret=\"OgTBHMpk0P\"><a href=\"https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Rated Biz List\" src=\"https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=u871nx8XS4#?secret=OgTBHMpk0P\" data-secret=\"OgTBHMpk0P\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2220,495,'_oembed_time_f87db2d7994e7be2379eb9e6eec6371e','1647185298'),(2221,495,'_oembed_29b1cc12d9f602f549cfe1a67d29d50a','<blockquote class=\"wp-embedded-content\" data-secret=\"m4jpEYbIGJ\"><a href=\"https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Rated Biz Listings\" src=\"https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=BJIN5Dpg9n#?secret=m4jpEYbIGJ\" data-secret=\"m4jpEYbIGJ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2222,495,'_oembed_time_29b1cc12d9f602f549cfe1a67d29d50a','1647185300'),(2223,495,'_oembed_8c41dd5fc543824ac9d4aa90762d7e0b','<blockquote class=\"wp-embedded-content\" data-secret=\"iVBD1YLARW\"><a href=\"https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Rated Biz Lists\" src=\"https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=bYbGdfT0xB#?secret=iVBD1YLARW\" data-secret=\"iVBD1YLARW\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2224,495,'_oembed_time_8c41dd5fc543824ac9d4aa90762d7e0b','1647185301'),(2225,495,'_oembed_c06b5675afd214470dc43f605c96add0','<blockquote class=\"wp-embedded-content\" data-secret=\"K4FQVMTpgz\"><a href=\"https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Rated Business Directory\" src=\"https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=i5ZlX0YVTd#?secret=K4FQVMTpgz\" data-secret=\"K4FQVMTpgz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2226,495,'_oembed_time_c06b5675afd214470dc43f605c96add0','1647185303'),(2227,495,'_oembed_30dd08c7c406e0653946685d92bb23fa','<blockquote class=\"wp-embedded-content\" data-secret=\"cOgUhHADTW\"><a href=\"https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top USA Biz\" src=\"https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=thapXmHHyZ#?secret=cOgUhHADTW\" data-secret=\"cOgUhHADTW\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2228,495,'_oembed_time_30dd08c7c406e0653946685d92bb23fa','1647185304'),(2229,495,'_oembed_23b6581bde28e73d73bfbc0cca553fe5','<blockquote class=\"wp-embedded-content\" data-secret=\"7sXtnWwYXd\"><a href=\"https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top USA Biz Directory\" src=\"https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=F7DK7pFQo0#?secret=7sXtnWwYXd\" data-secret=\"7sXtnWwYXd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2230,495,'_oembed_time_23b6581bde28e73d73bfbc0cca553fe5','1647185306'),(2231,495,'_oembed_2a0262efe635d1de51d05854b928f572','<blockquote class=\"wp-embedded-content\" data-secret=\"te0c7Rrzny\"><a href=\"https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top USA Biz Listings\" src=\"https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=LrORDgka88#?secret=te0c7Rrzny\" data-secret=\"te0c7Rrzny\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2232,495,'_oembed_time_2a0262efe635d1de51d05854b928f572','1647185306'),(2233,495,'_oembed_f0afc7a52a601c419becf901ce300a20','<blockquote class=\"wp-embedded-content\" data-secret=\"pJ4EtHdxvV\"><a href=\"https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top USA Directory\" src=\"https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=rF8yU6gvV3#?secret=pJ4EtHdxvV\" data-secret=\"pJ4EtHdxvV\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2234,495,'_oembed_time_f0afc7a52a601c419becf901ce300a20','1647185307'),(2235,495,'_oembed_fe70e9934349d77c88e840ecbdc27df7','<blockquote class=\"wp-embedded-content\" data-secret=\"6GlyFYnUHX\"><a href=\"https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Top Us Businesses\" src=\"https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=bKQJeVzklT#?secret=6GlyFYnUHX\" data-secret=\"6GlyFYnUHX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2236,495,'_oembed_time_fe70e9934349d77c88e840ecbdc27df7','1647185309'),(2237,495,'_oembed_5340b35c9790a699ea89394a872a7df0','<blockquote class=\"wp-embedded-content\" data-secret=\"mdoIgb2fdX\"><a href=\"https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; True Local Citations\" src=\"https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=U0vqb07DAy#?secret=mdoIgb2fdX\" data-secret=\"mdoIgb2fdX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2238,495,'_oembed_time_5340b35c9790a699ea89394a872a7df0','1647185310'),(2239,495,'_oembed_2ff9de2f36b2e7ec81683d5fe59821a5','<blockquote class=\"wp-embedded-content\" data-secret=\"dNv73ZUUQd\"><a href=\"https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; TZ Local Directory\" src=\"https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=XimcmADsDv#?secret=dNv73ZUUQd\" data-secret=\"dNv73ZUUQd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2240,495,'_oembed_time_2ff9de2f36b2e7ec81683d5fe59821a5','1647185312'),(2241,495,'_oembed_b6f85ba482cde16554399a752469ad79','<blockquote class=\"wp-embedded-content\" data-secret=\"Ts2Niif6CX\"><a href=\"https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Biz Citation\" src=\"https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ej7vdFamN4#?secret=Ts2Niif6CX\" data-secret=\"Ts2Niif6CX\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2242,495,'_oembed_time_b6f85ba482cde16554399a752469ad79','1647185313'),(2243,495,'_oembed_2701083f1a79d90f603151e2c19ff855','<blockquote class=\"wp-embedded-content\" data-secret=\"ph3BCLsprd\"><a href=\"https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Biz Citations\" src=\"https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=gOCshXZlOT#?secret=ph3BCLsprd\" data-secret=\"ph3BCLsprd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2244,495,'_oembed_time_2701083f1a79d90f603151e2c19ff855','1647185315'),(2245,495,'_oembed_e212d322006d1f745290fbaba29684ff','<blockquote class=\"wp-embedded-content\" data-secret=\"aABeGViCEH\"><a href=\"https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Biz Listings\" src=\"https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=mr7Rfts3qQ#?secret=aABeGViCEH\" data-secret=\"aABeGViCEH\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2246,495,'_oembed_time_e212d322006d1f745290fbaba29684ff','1647185316'),(2247,495,'_oembed_d8930148e7ff50201b63fa52dff28241','<blockquote class=\"wp-embedded-content\" data-secret=\"534JxQoCgt\"><a href=\"https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Biz Listings\" src=\"https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=e6nlQJFPTx#?secret=534JxQoCgt\" data-secret=\"534JxQoCgt\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2248,495,'_oembed_time_d8930148e7ff50201b63fa52dff28241','1647185319'),(2249,495,'_oembed_71d6dd6472705d306e984d0b1c0c030d','<blockquote class=\"wp-embedded-content\" data-secret=\"AhaR03MDw5\"><a href=\"https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Biz Lists\" src=\"https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=HC1lMLCWNU#?secret=AhaR03MDw5\" data-secret=\"AhaR03MDw5\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2250,495,'_oembed_time_71d6dd6472705d306e984d0b1c0c030d','1647185320'),(2251,495,'_oembed_fda154d6269f0fa2ef4a71e0461fed6c','<blockquote class=\"wp-embedded-content\" data-secret=\"gu9icoPSDs\"><a href=\"https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Business Citation\" src=\"https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ye8DFIbsK0#?secret=gu9icoPSDs\" data-secret=\"gu9icoPSDs\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2252,495,'_oembed_time_fda154d6269f0fa2ef4a71e0461fed6c','1647185322'),(2253,495,'_oembed_9279de8e7d20ab55989ee07818c4953e','<blockquote class=\"wp-embedded-content\" data-secret=\"kFG5mql6cA\"><a href=\"https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Business Citations\" src=\"https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=m79p3xYICW#?secret=kFG5mql6cA\" data-secret=\"kFG5mql6cA\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2254,495,'_oembed_time_9279de8e7d20ab55989ee07818c4953e','1647185324'),(2255,495,'_oembed_e54dd75bec3c92c9b6b60d0aee7ee76a','<blockquote class=\"wp-embedded-content\" data-secret=\"sYZ28cBEUq\"><a href=\"https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Company Listings\" src=\"https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=YGtJUXyKKY#?secret=sYZ28cBEUq\" data-secret=\"sYZ28cBEUq\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2256,495,'_oembed_time_e54dd75bec3c92c9b6b60d0aee7ee76a','1647185324'),(2257,495,'_oembed_2ea27d1392b16490437e58bcb874a786','<blockquote class=\"wp-embedded-content\" data-secret=\"QvjrSPKpto\"><a href=\"https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Company Lists\" src=\"https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=cYqU7q2IDT#?secret=QvjrSPKpto\" data-secret=\"QvjrSPKpto\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2258,495,'_oembed_time_2ea27d1392b16490437e58bcb874a786','1647185325'),(2259,495,'_oembed_cc2339b79b394d75c2d4a4bd263ab0e9','<blockquote class=\"wp-embedded-content\" data-secret=\"5YYJXhyt2H\"><a href=\"https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Local Listing\" src=\"https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=d2ZEYmso11#?secret=5YYJXhyt2H\" data-secret=\"5YYJXhyt2H\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2260,495,'_oembed_time_cc2339b79b394d75c2d4a4bd263ab0e9','1647185326'),(2261,495,'_oembed_4099d59ec5e445cbe99735460d3bf8b7','<blockquote class=\"wp-embedded-content\" data-secret=\"TLU1MyPna8\"><a href=\"https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Top Biz Directory\" src=\"https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=TdNcHfmKSq#?secret=TLU1MyPna8\" data-secret=\"TLU1MyPna8\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2262,495,'_oembed_time_4099d59ec5e445cbe99735460d3bf8b7','1647185327'),(2263,495,'_oembed_3bcaab2ae3b67290c60ea9bacc31d268','<blockquote class=\"wp-embedded-content\" data-secret=\"CoXfeXC5Lx\"><a href=\"https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Top Biz Listings\" src=\"https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=qePVQILN8s#?secret=CoXfeXC5Lx\" data-secret=\"CoXfeXC5Lx\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2264,495,'_oembed_time_3bcaab2ae3b67290c60ea9bacc31d268','1647185328'),(2265,495,'_oembed_b7d200dc9147fcacc23eaad198adb495','<blockquote class=\"wp-embedded-content\" data-secret=\"NfO5auY85r\"><a href=\"https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Top Directory\" src=\"https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=AIm0F0zGGm#?secret=NfO5auY85r\" data-secret=\"NfO5auY85r\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2266,495,'_oembed_time_b7d200dc9147fcacc23eaad198adb495','1647185328'),(2267,495,'_oembed_0ade734adecbad6db3d6442393d52e26','<blockquote class=\"wp-embedded-content\" data-secret=\"Jk9XjXDSmy\"><a href=\"https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; USA Top Listings\" src=\"https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=44KlSzYGdi#?secret=Jk9XjXDSmy\" data-secret=\"Jk9XjXDSmy\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2268,495,'_oembed_time_0ade734adecbad6db3d6442393d52e26','1647185330'),(2269,495,'_oembed_a1138eba3ebc662510b51a79ef55d7db','<blockquote class=\"wp-embedded-content\" data-secret=\"P4B04obyr9\"><a href=\"https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; US Best Business Directory\" src=\"https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=0Nf9AN4s54#?secret=P4B04obyr9\" data-secret=\"P4B04obyr9\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2270,495,'_oembed_time_a1138eba3ebc662510b51a79ef55d7db','1647185332'),(2271,495,'_oembed_9bb78859530efae37a10cff867367769','<blockquote class=\"wp-embedded-content\" data-secret=\"CoOMJUDVHo\"><a href=\"https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; US Best Business Listing\" src=\"https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=2m2WjYaR0Q#?secret=CoOMJUDVHo\" data-secret=\"CoOMJUDVHo\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2272,495,'_oembed_time_9bb78859530efae37a10cff867367769','1647185334'),(2273,495,'_oembed_28b1d11198530c9dbf7271b3f1660b7c','<blockquote class=\"wp-embedded-content\" data-secret=\"KAIdo0nmiO\"><a href=\"https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; US Local Listing\" src=\"https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=GuK5fis1bN#?secret=KAIdo0nmiO\" data-secret=\"KAIdo0nmiO\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2274,495,'_oembed_time_28b1d11198530c9dbf7271b3f1660b7c','1647185335'),(2275,495,'_oembed_b2f182c59167461dc50fa3d95eaa964e','<blockquote class=\"wp-embedded-content\" data-secret=\"vVdqJqLCWc\"><a href=\"https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Value Local Citations\" src=\"https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=nTbn89KsoI#?secret=vVdqJqLCWc\" data-secret=\"vVdqJqLCWc\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2276,495,'_oembed_time_b2f182c59167461dc50fa3d95eaa964e','1647185338'),(2277,495,'_oembed_49a67b69bb2cdccc57937ed79366c3b0','<blockquote class=\"wp-embedded-content\" data-secret=\"VYen773s9N\"><a href=\"https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; VIP Citations\" src=\"https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=RxzaZfYvUx#?secret=VYen773s9N\" data-secret=\"VYen773s9N\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2278,495,'_oembed_time_49a67b69bb2cdccc57937ed79366c3b0','1647185339'),(2279,495,'_oembed_08c883d3d745874a8cc2e2957a77a10d','<blockquote class=\"wp-embedded-content\" data-secret=\"I5Zur3u92Q\"><a href=\"https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; VIP Local Citations\" src=\"https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ZJ0auJ950y#?secret=I5Zur3u92Q\" data-secret=\"I5Zur3u92Q\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2280,495,'_oembed_time_08c883d3d745874a8cc2e2957a77a10d','1647185342'),(2281,495,'_oembed_8e80ee35e56a08c0ca5a28ea01671788','<blockquote class=\"wp-embedded-content\" data-secret=\"mWpbCPM7Jz\"><a href=\"https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Viral Local Listings\" src=\"https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=kgYQztt9mL#?secret=mWpbCPM7Jz\" data-secret=\"mWpbCPM7Jz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2282,495,'_oembed_time_8e80ee35e56a08c0ca5a28ea01671788','1647185343'),(2283,495,'_oembed_ed39b621f4d4206aba77bbf98fbb19b2','<blockquote class=\"wp-embedded-content\" data-secret=\"PdXoJZiXzi\"><a href=\"https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Viral Local Lists\" src=\"https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=LEPWpVcJ9o#?secret=PdXoJZiXzi\" data-secret=\"PdXoJZiXzi\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2284,495,'_oembed_time_ed39b621f4d4206aba77bbf98fbb19b2','1647185345'),(2285,495,'_oembed_c4076cac2650841f5412ad546cd537b3','<blockquote class=\"wp-embedded-content\" data-secret=\"fkLzzKWL44\"><a href=\"https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Vivah Directory\" src=\"https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=DeUziY5Jjx#?secret=fkLzzKWL44\" data-secret=\"fkLzzKWL44\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2286,495,'_oembed_time_c4076cac2650841f5412ad546cd537b3','1647185347'),(2287,495,'_oembed_12ebc409d232b6c37d941c51a0143062','<blockquote class=\"wp-embedded-content\" data-secret=\"5VdDGFYwVN\"><a href=\"https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Wise Citations\" src=\"https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=i5vn4c54yE#?secret=5VdDGFYwVN\" data-secret=\"5VdDGFYwVN\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2288,495,'_oembed_time_12ebc409d232b6c37d941c51a0143062','1647185348'),(2289,495,'_oembed_a7498a23cb5455c8ea82ab40c07454a3','<blockquote class=\"wp-embedded-content\" data-secret=\"kzvtOlMkDy\"><a href=\"https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; World Citations\" src=\"https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Y2DgJxweOa#?secret=kzvtOlMkDy\" data-secret=\"kzvtOlMkDy\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2290,495,'_oembed_time_a7498a23cb5455c8ea82ab40c07454a3','1647185350'),(2291,495,'_oembed_19ead4a6a0227a14852d254a1e8663bf','<blockquote class=\"wp-embedded-content\" data-secret=\"HDgX2ZBLU2\"><a href=\"https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Yes Biz Listings\" src=\"https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=yfLdKWqZ5k#?secret=HDgX2ZBLU2\" data-secret=\"HDgX2ZBLU2\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2292,495,'_oembed_time_19ead4a6a0227a14852d254a1e8663bf','1647185351'),(2300,495,'_oembed_17ad517d804d0c1aadc9f09a2bcee944','{{unknown}}'),(2294,495,'_oembed_2037ee78914dd39a33a08efc8b876f97','{{unknown}}'),(3158,912,'_et_builder_dynamic_assets_loading_attr_threshold','7'),(3161,912,'_thumbnail_id','0'),(2403,817,'_wp_attached_file','2022/04/Trena-Close-use-this-photo-scaled.jpg'),(2404,817,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:45:\"2022/04/Trena-Close-use-this-photo-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Trena-Close-use-this-photo-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Trena-Close-use-this-photo-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Trena-Close-use-this-photo-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:38:\"Trena-Close-use-this-photo-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-1536x1229.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-2048x1639.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Trena-Close-use-this-photo-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:39:\"Trena-Close-use-this-photo-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Trena-Close-use-this-photo-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Trena-Close-use-this-photo-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:39:\"Trena-Close-use-this-photo-1080x864.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Trena-Close-use-this-photo-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-1280x1024.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"Trena-Close-use-this-photo-980x784.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"Trena-Close-use-this-photo-480x384.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:\"original_image\";s:30:\"Trena-Close-use-this-photo.jpg\";}'),(3151,931,'_et_pb_built_for_post_type','page'),(3204,969,'_et_pb_module_type','et_pb_fullwidth_header'),(3205,969,'_et_pb_built_for_post_type','page'),(3255,984,'_edit_lock','1693242799:2'),(3087,104,'_thumbnail_id','0'),(3072,877,'_wp_attached_file','2023/08/Small-Business-Excel-Workbook.xlsx'),(3073,877,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:45773;}'),(3283,89,'_thumbnail_id','0'),(3427,984,'_et_dynamic_cached_attributes','a:8:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:9:\"font_icon\";a:4:{i:0;s:17:\"&#xf879;||fa||900\";i:1;s:19:\"&#xe06b;||divi||400\";i:2;s:17:\"&#xf2a0;||fa||900\";i:3;s:17:\"&#xf017;||fa||900\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:6:\"bounce\";}s:14:\"social_network\";a:1:{i:0;s:8:\"facebook\";}}'),(3428,984,'_et_builder_module_features_cache','a:2:{i:0;s:111:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"tb\":{\"152\":\"2023-08-29 22:53:39\",\"185\":\"2023-08-30 16:56:37\"},\"wpe\":[]}\";i:1;a:46:{s:46:\"et_pb_section_8f6c8a267889a1c56c34e3e2f8bf65ba\";a:8:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_fcdc69ff297ebe4b032eec6fe8213fc1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_c4950c0707fc64fff870a0935b48d059\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c2f99ed31f38cee8be19b6c38f243437\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e63d2a6b1dfed14809fab41e804535e8\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_bb8771108134dd95c23a8a913d3f1bfa\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_79c24f6d2b1f1122c2d9c56637b4afa3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_516166285ab3fceb47ef47498810e4e3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_ca1a50df95a62a880cb5665ca2f7a658\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_2552f27988d67572ed915c34e6234084\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_57572f4b7079aa472df5ac91522e809b\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0c5919574d1a0388888441305e31a3b\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_d51cc89a5f3fae2d14e7c4b8d349fdd8\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_9e06e47ec61585b9000934bea33f6201\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_de2fa3e840d2bede7feae3cb2cbe00a6\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b8fcda2f4c836fec5b4f6629677ddb69\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d971d292f3d31dc50f71e93c5d3b9c64\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_3a531d09b7af9f063b793f90a838e7f9\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_f4b5f564fb06e91944a092e6b268573e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_eb578eabf885c617e10606fc1f7a99cd\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4ac2d1fd1d3e413d114ecca2f0eff85\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_7f414ecf2df32be221fc0e4b89910889\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_7971a89342be675099927afa0265481c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0443520087788e8352786c670f541cb\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_694d213bc81a56bc1b8fce9db19e1cfc\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5fa93a6ce583671dcca0829c03abbe91\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_fe9137654c9e04681c1cc8b3196e2a50\";a:7:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_fa0e2e6c81ea18a54be926452bae69b2\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2a699fc258eb322bfd2c010b05c6b8f4\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_6825ef71acccac6d91b28aab82525b73\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_1e7790146e2c0c57199d352f4c2404a5\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ab4d23dc32d3663bb4d9f81bca77557c\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e554a887fbb6ed44db0e7d2b778066fc\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_ecf51be35e0b630c332ee0f1bcfa3c05\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_48539f2145b33e34baec1265fba6d601\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_adcf5debd4886ee0cfb6337a818c3e9a\";a:7:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4524a94bdb468bea435d54554568bdfc\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_0c9ccd05c8771e0d7b629067ff4ce2c9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_ad418eb0f4180ba5f5a9d1cad71b778a\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_25c82f295ea8a41facc0e2bf23147320\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_cc3a412b727a3f5a356a8663b1bd992f\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_807141cfa02a068c63851638c3de5b6a\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_87a38eabac10d66ed1c6b96a8f4c9a53\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_ff493a2963bae3c35f41886284162f40\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_2581e6cad0f19a065667ba12209bfd48\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8c1a18925a5a6a53e1b0c69c1de412a0\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(3385,1013,'_wp_trash_meta_status','publish'),(3386,1013,'_wp_trash_meta_time','1693340662'),(3390,1015,'_wp_trash_meta_status','publish'),(3391,1015,'_wp_trash_meta_time','1693340740'),(3395,1017,'_wp_trash_meta_status','publish'),(3396,1017,'_wp_trash_meta_time','1693340850'),(3400,1019,'_wp_trash_meta_status','publish'),(3401,1019,'_wp_trash_meta_time','1693340890'),(3402,1021,'_edit_lock','1693340953:1'),(3403,1021,'_wp_trash_meta_status','publish'),(3404,1021,'_wp_trash_meta_time','1693340976'),(3446,975,'_et_builder_module_features_cache','a:2:{i:0;s:111:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"tb\":{\"152\":\"2023-08-29 22:53:39\",\"185\":\"2023-08-30 00:03:26\"},\"wpe\":[]}\";i:1;a:46:{s:46:\"et_pb_section_8f6c8a267889a1c56c34e3e2f8bf65ba\";a:8:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_fcdc69ff297ebe4b032eec6fe8213fc1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_c4950c0707fc64fff870a0935b48d059\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c2f99ed31f38cee8be19b6c38f243437\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e63d2a6b1dfed14809fab41e804535e8\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_bb8771108134dd95c23a8a913d3f1bfa\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_79c24f6d2b1f1122c2d9c56637b4afa3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_516166285ab3fceb47ef47498810e4e3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_ca1a50df95a62a880cb5665ca2f7a658\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_2552f27988d67572ed915c34e6234084\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_57572f4b7079aa472df5ac91522e809b\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0c5919574d1a0388888441305e31a3b\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_2ff82baf724a52a71daf10f960afadb5\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_9e06e47ec61585b9000934bea33f6201\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_de2fa3e840d2bede7feae3cb2cbe00a6\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b8fcda2f4c836fec5b4f6629677ddb69\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d971d292f3d31dc50f71e93c5d3b9c64\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_3a531d09b7af9f063b793f90a838e7f9\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_f4b5f564fb06e91944a092e6b268573e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_eb578eabf885c617e10606fc1f7a99cd\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4ac2d1fd1d3e413d114ecca2f0eff85\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_7f414ecf2df32be221fc0e4b89910889\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_7971a89342be675099927afa0265481c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_61344d9439c998d95f0a4280550bf8f7\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d319d65ade255f507cd9e1e2b4c6ee83\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_0e454f12aae2d9b6dca30fa567c18fed\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_6773f2d0abfc879839d71acfda45ad04\";a:7:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_7f277aae199748bcbee36c1c05393744\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_6121e698faa3473966af99f466a79bd9\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_7da8e2c22b0f26d124c0f40fbb0fcc41\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_4d41a6d2b5875771129dd5efe469e0cc\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_3d43805066656b6d51572ecb206ee23c\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_30cf87dfdb30a0e8236ef18347fead64\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_d93893b1b3e99c1b43e8bb39bb7ebc01\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4886960552e0ad8245f945e9ba3a4860\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_0c4dd388a688b6950d7d3dab8495fa5a\";a:7:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_37562b9cd208424b05e4237eea0567dc\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_fa9dcf03b3c1fb6fb2ab8a0eb4e73c6e\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_da62ad161eb205c9e42dd7f2a15ce9a6\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_a7be97de94b3994fb7bcb276cd730535\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_131f5998521ed0da99df62dea285412f\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_eb4f08f99f1f811c66acc16ac28faf12\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_fd959082aac158326d87d4b2f06cdf48\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_92193df91c2fd96d3f35d95e633668c7\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_dbf497e8f223bb1777ba7572d0274518\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c02e4ad7b9eb08839523899f40617718\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(3408,1023,'_wp_trash_meta_status','publish'),(3409,1023,'_wp_trash_meta_time','1693341092'),(3414,1025,'_wp_trash_meta_status','publish'),(3415,1025,'_wp_trash_meta_time','1693341153'),(3445,975,'_et_dynamic_cached_attributes','a:8:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:9:\"font_icon\";a:4:{i:0;s:17:\"&#xf879;||fa||900\";i:1;s:19:\"&#xe06b;||divi||400\";i:2;s:17:\"&#xf2a0;||fa||900\";i:3;s:17:\"&#xf017;||fa||900\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:6:\"bounce\";}s:14:\"social_network\";a:1:{i:0;s:8:\"facebook\";}}'),(3433,118,'_thumbnail_id','0'),(3444,975,'_et_dynamic_cached_shortcodes','a:16:{i:0;s:18:\"et_pb_column_inner\";i:1;s:19:\"et_pb_contact_field\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:15:\"et_pb_row_inner\";i:7;s:11:\"et_pb_blurb\";i:8;s:12:\"et_pb_button\";i:9;s:18:\"et_pb_contact_form\";i:10;s:22:\"et_pb_fullwidth_header\";i:11;s:11:\"et_pb_image\";i:12;s:10:\"et_pb_menu\";i:13;s:13:\"et_pb_sidebar\";i:14;s:25:\"et_pb_social_media_follow\";i:15;s:10:\"et_pb_text\";}'),(2415,825,'_wp_attached_file','2022/04/2021-Office-View-3-scaled.jpg'),(2416,825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:37:\"2022/04/2021-Office-View-3-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"2021-Office-View-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"2021-Office-View-3-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"2021-Office-View-3-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:30:\"2021-Office-View-3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"2021-Office-View-3-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"2021-Office-View-3-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"2021-Office-View-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"2021-Office-View-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"2021-Office-View-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"2021-Office-View-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"2021-Office-View-3-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"2021-Office-View-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"2021-Office-View-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:31:\"2021-Office-View-3-1280x960.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:30:\"2021-Office-View-3-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"2021-Office-View-3-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:\"original_image\";s:22:\"2021-Office-View-3.jpg\";}'),(2425,109,'_thumbnail_id','0'),(2737,89,'_yoast_wpseo_wordproof_timestamp',''),(2419,828,'_wp_attached_file','2022/04/Nakusp-Forest-2021-scaled.jpg'),(2420,828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1923;s:6:\"height\";i:2560;s:4:\"file\";s:37:\"2022/04/Nakusp-Forest-2021-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Nakusp-Forest-2021-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Nakusp-Forest-2021-769x1024.jpg\";s:5:\"width\";i:769;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Nakusp-Forest-2021-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:\"Nakusp-Forest-2021-768x1022.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1022;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Nakusp-Forest-2021-1154x1536.jpg\";s:5:\"width\";i:1154;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"Nakusp-Forest-2021-1539x2048.jpg\";s:5:\"width\";i:1539;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Nakusp-Forest-2021-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Nakusp-Forest-2021-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Nakusp-Forest-2021-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Nakusp-Forest-2021-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Nakusp-Forest-2021-1080x1438.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Nakusp-Forest-2021-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Nakusp-Forest-2021-2320x1800.jpg\";s:5:\"width\";i:2320;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:32:\"Nakusp-Forest-2021-1280x1704.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1704;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:31:\"Nakusp-Forest-2021-980x1305.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1305;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"Nakusp-Forest-2021-480x639.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:\"original_image\";s:22:\"Nakusp-Forest-2021.jpg\";}'),(2405,820,'_wp_attached_file','2022/04/Trena-Close-use-this-photo-1-scaled.jpg'),(2406,820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:47:\"2022/04/Trena-Close-use-this-photo-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-1-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Trena-Close-use-this-photo-1-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-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:40:\"Trena-Close-use-this-photo-1-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"Trena-Close-use-this-photo-1-1536x1229.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"Trena-Close-use-this-photo-1-2048x1639.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Trena-Close-use-this-photo-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Trena-Close-use-this-photo-1-1080x864.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Trena-Close-use-this-photo-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"Trena-Close-use-this-photo-1-1280x1024.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-1-980x784.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Trena-Close-use-this-photo-1-480x384.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:\"original_image\";s:32:\"Trena-Close-use-this-photo-1.jpg\";}'),(3062,871,'_edit_lock','1692819912:2'),(3429,912,'_et_dynamic_cached_shortcodes','a:16:{i:0;s:18:\"et_pb_column_inner\";i:1;s:19:\"et_pb_contact_field\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:15:\"et_pb_row_inner\";i:7;s:11:\"et_pb_blurb\";i:8;s:12:\"et_pb_button\";i:9;s:18:\"et_pb_contact_form\";i:10;s:22:\"et_pb_fullwidth_header\";i:11;s:11:\"et_pb_image\";i:12;s:10:\"et_pb_menu\";i:13;s:13:\"et_pb_sidebar\";i:14;s:25:\"et_pb_social_media_follow\";i:15;s:10:\"et_pb_text\";}'),(3430,912,'_et_dynamic_cached_attributes','a:8:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:9:\"font_icon\";a:4:{i:0;s:17:\"&#xf879;||fa||900\";i:1;s:19:\"&#xe06b;||divi||400\";i:2;s:17:\"&#xf2a0;||fa||900\";i:3;s:17:\"&#xf017;||fa||900\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:6:\"bounce\";}s:14:\"social_network\";a:1:{i:0;s:8:\"facebook\";}}'),(3431,912,'_et_builder_module_features_cache','a:2:{i:0;s:111:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"tb\":{\"152\":\"2023-08-29 22:53:39\",\"185\":\"2023-08-30 16:56:37\"},\"wpe\":[]}\";i:1;a:79:{s:46:\"et_pb_section_8f6c8a267889a1c56c34e3e2f8bf65ba\";a:8:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_fcdc69ff297ebe4b032eec6fe8213fc1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_c4950c0707fc64fff870a0935b48d059\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c2f99ed31f38cee8be19b6c38f243437\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e63d2a6b1dfed14809fab41e804535e8\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_bb8771108134dd95c23a8a913d3f1bfa\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_79c24f6d2b1f1122c2d9c56637b4afa3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_516166285ab3fceb47ef47498810e4e3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_ca1a50df95a62a880cb5665ca2f7a658\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_2552f27988d67572ed915c34e6234084\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_57572f4b7079aa472df5ac91522e809b\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0c5919574d1a0388888441305e31a3b\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_3e317bbf439ac34375dfba0456f3772f\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_bef5102bb539bb0a35ede5e80c0fe2ce\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_29a89a6b6da15b149e400eb8a7a31d3f\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_4050a6e3235b00d71be61f20b3e7b659\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_89bf1cf4da3b0df3169003db4c39ba94\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_de2fa3e840d2bede7feae3cb2cbe00a6\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_27a10ce6fd54cdcfb6562e590cf13561\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_de05563b85d4a2e43fe6af899c255732\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_02c794cda7f888dda1676e8aea0c70e7\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_cfec07c8d32933fc1e8514189ab8d847\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_b342b30836ef1e33d66a8ecad6b49c4f\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_a4970a386168800f73a5a2de921ffdee\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_86cada423f31f2e14ccd70dd1db24542\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_c3c063317f7ce1276d7e037e6d3cd144\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_f7c9cd253350cfc9aa6a3e04041b00be\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_9e06e47ec61585b9000934bea33f6201\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_1556a16bde7658a1b820fe0288688edc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b8fcda2f4c836fec5b4f6629677ddb69\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d134759d3e733490ebc7bb56059e1035\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_04d5669165bf8e70c15a732f673fcf78\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_78754e5327fd4ed820235fc981a01640\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_7f414ecf2df32be221fc0e4b89910889\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_db3ee7c869198cdc8856253a48fcb806\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a0ac9bb96284fbf5c878a26eecaec608\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_01f33d78028852c32915836743d1df7c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_63b7d579983ee4318424b8760dc52576\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_a3b0b3c7e47b05f48a46b331660fd08d\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f215626c190ebdf541919476275af506\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_907ec5cb4e623ce10f279e340561ac9e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_de2fa3e840d2bede7feae3cb2cbe00a6\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d971d292f3d31dc50f71e93c5d3b9c64\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_eb578eabf885c617e10606fc1f7a99cd\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4ac2d1fd1d3e413d114ecca2f0eff85\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_70a985ade956f503800fad90e70afd79\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_57a20b0c8d32f82050abd81ec11f9583\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_2f48c764aca17e25b32939b25ff36bda\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_8601c84aa455447279494dab305e9be2\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_b4c3d9edda85a6a6d57a64c504b80f36\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f820d770eb0198e42b87ffb50bf907b5\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_fc61929535cd922c6e3b9c958c5a9bd9\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5a9e8274fcc310bd58bf549756604d3\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_f4b5f564fb06e91944a092e6b268573e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_2a91bbb275a659b83b31f0fee727fac6\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_7971a89342be675099927afa0265481c\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0443520087788e8352786c670f541cb\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_694d213bc81a56bc1b8fce9db19e1cfc\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5fa93a6ce583671dcca0829c03abbe91\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_fe9137654c9e04681c1cc8b3196e2a50\";a:7:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_fa0e2e6c81ea18a54be926452bae69b2\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2a699fc258eb322bfd2c010b05c6b8f4\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_6825ef71acccac6d91b28aab82525b73\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_1e7790146e2c0c57199d352f4c2404a5\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ab4d23dc32d3663bb4d9f81bca77557c\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e554a887fbb6ed44db0e7d2b778066fc\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_ecf51be35e0b630c332ee0f1bcfa3c05\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_48539f2145b33e34baec1265fba6d601\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_adcf5debd4886ee0cfb6337a818c3e9a\";a:7:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4524a94bdb468bea435d54554568bdfc\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_0c9ccd05c8771e0d7b629067ff4ce2c9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_ad418eb0f4180ba5f5a9d1cad71b778a\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_25c82f295ea8a41facc0e2bf23147320\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_cc3a412b727a3f5a356a8663b1bd992f\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_807141cfa02a068c63851638c3de5b6a\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_87a38eabac10d66ed1c6b96a8f4c9a53\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_ff493a2963bae3c35f41886284162f40\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_2581e6cad0f19a065667ba12209bfd48\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8c1a18925a5a6a53e1b0c69c1de412a0\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(3363,1007,'_wp_trash_meta_status','publish'),(3364,1007,'_wp_trash_meta_time','1693337980'),(3365,1007,'_wp_desired_post_slug','test'),(3330,1006,'_form','<p>[text* your-name placeholder \"Name\"] </p>\n<p>[email* your-email placeholder \"Email\"] </p>\n<p>[textarea* your-message placeholder \"Message\"] </p>\n[submit \"Submit\"]'),(3331,1006,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:46:\"[_site_title] New submission from Contact Form\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@capitalbookkeepingco.com>\";s:9:\"recipient\";s:211:\"[_site_admin_email],marketing@localmarketingplus.ca,info@capitalbookkeepingco.com,info@localmarketingplus.ca,joann@localmarketingplus.ca,brentonscottsmith@gmail.com,rgood@cmitsolutions.com,warrenabayon@gmail.com\";s:4:\"body\";s:179:\"From: [your-name] [your-email]\nSubject: New submission from Contact Form\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";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;}'),(3332,1006,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:45:\"[_site_title] <info@capitalbookkeepingco.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(3333,1006,'_messages','a:22:{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:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";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:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:41:\"Please enter a date in YYYY-MM-DD format.\";s:14:\"date_too_early\";s:32:\"This field has a too early date.\";s:13:\"date_too_late\";s:31:\"This field has a too late date.\";s:14:\"invalid_number\";s:22:\"Please enter a number.\";s:16:\"number_too_small\";s:34:\"This field has a too small number.\";s:16:\"number_too_large\";s:34:\"This field has a too large number.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:30:\"Please enter an email address.\";s:11:\"invalid_url\";s:19:\"Please enter a URL.\";s:11:\"invalid_tel\";s:32:\"Please enter a telephone number.\";}'),(3334,1006,'_additional_settings',''),(3335,1006,'_locale','en_US'),(3336,1006,'_hash','18ee0e6084ac615ec907d52f05958811911892fc'),(3337,1007,'_edit_lock','1693337317:1'),(3338,1007,'_edit_last','1'),(3341,1007,'_et_post_bg_color','#ffffff'),(3342,1007,'_et_post_bg_layout','light'),(3343,1007,'_et_pb_show_title','on'),(3344,1007,'_et_pb_post_hide_nav','default'),(3345,1007,'_et_pb_page_layout','et_right_sidebar'),(3346,1007,'_et_pb_side_nav','off'),(3347,1007,'_et_pb_use_builder',''),(3348,1007,'_et_pb_first_image',''),(3349,1007,'_et_pb_truncate_post',''),(3350,1007,'_et_pb_truncate_post_date',''),(3351,1007,'_et_pb_old_content',''),(3352,1007,'_yoast_wpseo_estimated-reading-time-minutes','0'),(3353,1007,'_yoast_wpseo_wordproof_timestamp',''),(3354,1007,'_yoast_wpseo_primary_category',''),(3356,1007,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(3413,1025,'_edit_lock','1693341152:1'),(3419,89,'_et_dynamic_cached_shortcodes','a:19:{i:0;s:18:\"et_pb_column_inner\";i:1;s:20:\"et_pb_accordion_item\";i:2;s:19:\"et_pb_contact_field\";i:3;s:33:\"et_pb_social_media_follow_network\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_row_inner\";i:8;s:15:\"et_pb_accordion\";i:9;s:11:\"et_pb_blurb\";i:10;s:12:\"et_pb_button\";i:11;s:18:\"et_pb_contact_form\";i:12;s:22:\"et_pb_fullwidth_header\";i:13;s:11:\"et_pb_image\";i:14;s:10:\"et_pb_menu\";i:15;s:13:\"et_pb_sidebar\";i:16;s:25:\"et_pb_social_media_follow\";i:17;s:17:\"et_pb_team_member\";i:18;s:10:\"et_pb_text\";}'),(3420,89,'_et_dynamic_cached_attributes','a:8:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:9:\"font_icon\";a:4:{i:0;s:17:\"&#xf879;||fa||900\";i:1;s:19:\"&#xe06b;||divi||400\";i:2;s:17:\"&#xf2a0;||fa||900\";i:3;s:17:\"&#xf017;||fa||900\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:5:\"slide\";}s:14:\"social_network\";a:1:{i:0;s:8:\"facebook\";}}'),(3421,89,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"enable_all_character_sets\":\"false\"}\";}'),(3422,89,'_et_builder_module_features_cache','a:2:{i:0;s:111:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"tb\":{\"152\":\"2023-08-29 22:53:39\",\"185\":\"2023-08-30 16:56:37\"},\"wpe\":[]}\";i:1;a:72:{s:46:\"et_pb_section_8f6c8a267889a1c56c34e3e2f8bf65ba\";a:8:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_fcdc69ff297ebe4b032eec6fe8213fc1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_c4950c0707fc64fff870a0935b48d059\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c2f99ed31f38cee8be19b6c38f243437\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e63d2a6b1dfed14809fab41e804535e8\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_bb8771108134dd95c23a8a913d3f1bfa\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_79c24f6d2b1f1122c2d9c56637b4afa3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_516166285ab3fceb47ef47498810e4e3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_ca1a50df95a62a880cb5665ca2f7a658\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_2552f27988d67572ed915c34e6234084\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_57572f4b7079aa472df5ac91522e809b\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_4f44c2ef274d53077611bb312fa358b6\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_808a64cfb80ff279bc444d9dd6ea7dc7\";a:8:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_e9a3cfc872d5af8aef4ee761a00bc731\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8f4120a41bb7dd1777889a63e24d66eb\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cf94e556f7863291e534aba6233d131d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6c078c856e076c3a86ce80f58ee337e5\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f9bd7cdb2b26aad1b339b9b8de162da9\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_694d213bc81a56bc1b8fce9db19e1cfc\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_8fe5a221a8ba7a50ab6f87bd4afd7a7f\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9f55a002a2b8ef6fbee77b7c229154e4\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_afb07a023ceb1bedf20602b94be2023a\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_057749167b77647ad3cdfce09b5855c2\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9c3127cdd00247494e3cce824d8eab35\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_22261243fea08d7c69c7c2f02fe2d1b4\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ced0257a7ca04bf6e6c563f75c758419\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_4f1cfd772e490cf6f44110865b95f02e\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8c319b1100a017af46e8319a3d6c52cf\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_77f3cc32d1f23f6edb5f668df3f287ea\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_d52d9cbefdeeaac53df5e408c7c27386\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_7ad83af45f86c2645bed5301b3b947c4\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_79930971caddaefc40ddaadb895ec9aa\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_05c7fb5539694331c90fe5191ff0b4b9\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"hov\";b:1;}s:46:\"et_pb_section_f20ecd1860301a89c1355c0294a4ce2d\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ad418eb0f4180ba5f5a9d1cad71b778a\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_42ccae619d031e9fe0957d33374eee2c\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_bd9eb704bea1e974212c496585ba359d\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_14e9d0fe0917fb26bb911734e5f28f7b\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"et_pb_team_member_d874a89ecb131d257640f993314a465d\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"et_pb_team_member_dcecdb041c79dba187aba321c7429f90\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"et_pb_team_member_e1974d12385b97443f65b5bc58edae48\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"et_pb_team_member_0c1ff7ba85c5b266da934383d8a24247\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7441d52e4b724ff52d288bff91a069dd\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_accordion_ad418eb0f4180ba5f5a9d1cad71b778a\";a:7:{s:4:\"glde\";a:7:{s:16:\"toggle_font_size\";s:2:\"16\";s:21:\"toggle_letter_spacing\";s:3:\"0px\";s:18:\"toggle_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_de858b840044054fa86d76aec6d6c35b\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:53:\"et_pb_accordion_item_d9f658f03a3529598bfde121027e554c\";a:7:{s:4:\"glde\";a:11:{s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"20\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_16ce95774bb1e302ab75ea5ae5a2ad63\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_aed4385319c2d4029ce9bc99c008d2a0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d4bfa109de1848c30f95d3bc4d845abe\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0443520087788e8352786c670f541cb\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5fa93a6ce583671dcca0829c03abbe91\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_fe9137654c9e04681c1cc8b3196e2a50\";a:7:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_fa0e2e6c81ea18a54be926452bae69b2\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2a699fc258eb322bfd2c010b05c6b8f4\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_6825ef71acccac6d91b28aab82525b73\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_1e7790146e2c0c57199d352f4c2404a5\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ab4d23dc32d3663bb4d9f81bca77557c\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e554a887fbb6ed44db0e7d2b778066fc\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_ecf51be35e0b630c332ee0f1bcfa3c05\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_48539f2145b33e34baec1265fba6d601\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_adcf5debd4886ee0cfb6337a818c3e9a\";a:7:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4524a94bdb468bea435d54554568bdfc\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_0c9ccd05c8771e0d7b629067ff4ce2c9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_ad418eb0f4180ba5f5a9d1cad71b778a\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_25c82f295ea8a41facc0e2bf23147320\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_cc3a412b727a3f5a356a8663b1bd992f\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_807141cfa02a068c63851638c3de5b6a\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_87a38eabac10d66ed1c6b96a8f4c9a53\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_ff493a2963bae3c35f41886284162f40\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_2581e6cad0f19a065667ba12209bfd48\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8c1a18925a5a6a53e1b0c69c1de412a0\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(3058,94,'_yoast_wpseo_wordproof_timestamp',''),(2421,829,'_wp_attached_file','2022/04/Pano-fr-Knox-w-Clarissa-2020-scaled.jpg'),(2422,829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:809;s:4:\"file\";s:47:\"2022/04/Pano-fr-Knox-w-Clarissa-2020-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Pano-fr-Knox-w-Clarissa-2020-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Pano-fr-Knox-w-Clarissa-2020-1024x323.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Pano-fr-Knox-w-Clarissa-2020-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:40:\"Pano-fr-Knox-w-Clarissa-2020-768x243.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"Pano-fr-Knox-w-Clarissa-2020-1536x485.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"Pano-fr-Knox-w-Clarissa-2020-2048x647.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:647;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Pano-fr-Knox-w-Clarissa-2020-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Pano-fr-Knox-w-Clarissa-2020-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Pano-fr-Knox-w-Clarissa-2020-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Pano-fr-Knox-w-Clarissa-2020-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Pano-fr-Knox-w-Clarissa-2020-1080x341.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Pano-fr-Knox-w-Clarissa-2020-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Pano-fr-Knox-w-Clarissa-2020-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"Pano-fr-Knox-w-Clarissa-2020-1280x405.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"Pano-fr-Knox-w-Clarissa-2020-980x310.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Pano-fr-Knox-w-Clarissa-2020-480x152.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:\"original_image\";s:32:\"Pano-fr-Knox-w-Clarissa-2020.jpg\";}'),(2423,830,'_wp_attached_file','2022/04/Pano-fr-LC-2020-scaled.jpg'),(2424,830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:735;s:4:\"file\";s:34:\"2022/04/Pano-fr-LC-2020-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Pano-fr-LC-2020-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Pano-fr-LC-2020-1024x294.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Pano-fr-LC-2020-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:27:\"Pano-fr-LC-2020-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"Pano-fr-LC-2020-1536x441.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"Pano-fr-LC-2020-2048x588.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Pano-fr-LC-2020-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Pano-fr-LC-2020-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Pano-fr-LC-2020-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Pano-fr-LC-2020-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Pano-fr-LC-2020-1080x310.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Pano-fr-LC-2020-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:29:\"Pano-fr-LC-2020-2880x1765.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1765;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:28:\"Pano-fr-LC-2020-1280x368.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:27:\"Pano-fr-LC-2020-980x281.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"Pano-fr-LC-2020-480x138.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:\"original_image\";s:19:\"Pano-fr-LC-2020.jpg\";}'),(3070,104,'_yoast_wpseo_wordproof_timestamp',''),(3256,984,'_edit_last','2'),(3257,984,'_wp_page_template','default'),(3258,984,'_et_pb_post_hide_nav','default'),(3259,984,'_et_pb_page_layout','et_right_sidebar'),(3260,984,'_et_pb_side_nav','off'),(3261,984,'_et_pb_use_builder','on'),(3262,984,'_et_pb_first_image',''),(3263,984,'_et_pb_truncate_post',''),(3264,984,'_et_pb_truncate_post_date',''),(3265,984,'_et_pb_old_content',''),(3266,984,'_yoast_wpseo_estimated-reading-time-minutes',''),(3267,984,'_yoast_wpseo_wordproof_timestamp',''),(3268,984,'_et_pb_built_for_post_type','page'),(3115,912,'_edit_lock','1693353313:4'),(3116,912,'_edit_last','2'),(3117,912,'_wp_page_template','default'),(3118,912,'_et_pb_post_hide_nav','default'),(3119,912,'_et_pb_page_layout','et_right_sidebar'),(3120,912,'_et_pb_side_nav','off'),(3121,912,'_et_pb_use_builder','on'),(3122,912,'_et_pb_first_image',''),(3123,912,'_et_pb_truncate_post',''),(3124,912,'_et_pb_truncate_post_date',''),(3125,912,'_et_pb_old_content',''),(3126,912,'_yoast_wpseo_estimated-reading-time-minutes',''),(3127,912,'_yoast_wpseo_wordproof_timestamp',''),(3128,912,'_et_pb_built_for_post_type','page'),(3129,912,'_et_pb_ab_subjects',''),(3130,912,'_et_pb_enable_shortcode_tracking',''),(3079,877,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(3131,912,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"912\" /]'),(3132,912,'_et_pb_custom_css',''),(3133,912,'_et_pb_gutter_width','3'),(3135,912,'_global_colors_info','{}'),(3136,912,'_et_builder_version','VB|Divi|4.19.2'),(3137,912,'_et_pb_show_page_creation','off'),(3097,901,'_et_pb_module_type','et_pb_text'),(3098,901,'_et_pb_built_for_post_type','page'),(3099,902,'_et_pb_module_type','et_pb_text'),(3100,902,'_et_pb_built_for_post_type','page'),(3101,903,'_et_pb_row_layout','1_3,1_3,1_3'),(3102,903,'_et_pb_built_for_post_type','page'),(3437,94,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:18:\"et_pb_column_inner\";i:1;s:19:\"et_pb_contact_field\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:15:\"et_pb_row_inner\";i:7;s:11:\"et_pb_blurb\";i:8;s:18:\"et_pb_contact_form\";i:9;s:22:\"et_pb_fullwidth_header\";i:10;s:11:\"et_pb_image\";i:11;s:10:\"et_pb_menu\";i:12;s:13:\"et_pb_sidebar\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(3438,94,'_et_dynamic_cached_attributes','a:7:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:9:\"font_icon\";a:4:{i:0;s:17:\"&#xf879;||fa||900\";i:1;s:19:\"&#xe06b;||divi||400\";i:2;s:17:\"&#xf2a0;||fa||900\";i:3;s:17:\"&#xf017;||fa||900\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:14:\"social_network\";a:1:{i:0;s:8:\"facebook\";}}'),(3439,94,'_et_builder_module_features_cache','a:2:{i:0;s:111:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"tb\":{\"152\":\"2023-08-29 22:53:39\",\"185\":\"2023-08-30 00:03:26\"},\"wpe\":[]}\";i:1;a:57:{s:46:\"et_pb_section_8f6c8a267889a1c56c34e3e2f8bf65ba\";a:8:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_fcdc69ff297ebe4b032eec6fe8213fc1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_c4950c0707fc64fff870a0935b48d059\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c2f99ed31f38cee8be19b6c38f243437\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e63d2a6b1dfed14809fab41e804535e8\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_bb8771108134dd95c23a8a913d3f1bfa\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_79c24f6d2b1f1122c2d9c56637b4afa3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_516166285ab3fceb47ef47498810e4e3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_ca1a50df95a62a880cb5665ca2f7a658\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_2552f27988d67572ed915c34e6234084\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_57572f4b7079aa472df5ac91522e809b\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_4f44c2ef274d53077611bb312fa358b6\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_25afd81dfea3aac379266fbbfcfa5e11\";a:8:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7441d52e4b724ff52d288bff91a069dd\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ad418eb0f4180ba5f5a9d1cad71b778a\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_802bcabf260eed29a565b1c08b69186b\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_51df01194a590bd1e96465ce2838698a\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_60bcdc7d84a335fdbad0387a3df87277\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_0b1942ee3fb7242bc657bf657d9b4974\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_20c21363234ac4614866cea2411828cc\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_20265335e65f78ac6c105f073ddc9ece\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_ebe0ada6f0b9bfa3331b7298d42af6ca\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_51a5ed533668994e0ee1a979c187fac4\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_b537e88580f965d11b706c76b58857f1\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_4d63873724c58531a807bb2096af2ed0\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_c593bb36f2aa53ca74cc968b3920304f\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_6a656c9e2562424c4239ae49ca0bb1da\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_3ff84d9fc703fbfc3ca2aab8f35b852a\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_48430c35d40f67ca9a80ddf7b3616558\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_8018e0610d3191af634729c0ff7f377e\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1604a73e24a7b58d5f05bfff37f0458f\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_02c538d681ca59d9d7c6f95e9d68c69c\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_aa06f607fac87167bf6e67b31f70d8e2\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_61344d9439c998d95f0a4280550bf8f7\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d319d65ade255f507cd9e1e2b4c6ee83\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_0e454f12aae2d9b6dca30fa567c18fed\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_6773f2d0abfc879839d71acfda45ad04\";a:7:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_7f277aae199748bcbee36c1c05393744\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_6121e698faa3473966af99f466a79bd9\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_7da8e2c22b0f26d124c0f40fbb0fcc41\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_4d41a6d2b5875771129dd5efe469e0cc\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_3d43805066656b6d51572ecb206ee23c\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_30cf87dfdb30a0e8236ef18347fead64\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_d93893b1b3e99c1b43e8bb39bb7ebc01\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4886960552e0ad8245f945e9ba3a4860\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_0c4dd388a688b6950d7d3dab8495fa5a\";a:7:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_37562b9cd208424b05e4237eea0567dc\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_fa9dcf03b3c1fb6fb2ab8a0eb4e73c6e\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_da62ad161eb205c9e42dd7f2a15ce9a6\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_a7be97de94b3994fb7bcb276cd730535\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_131f5998521ed0da99df62dea285412f\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_eb4f08f99f1f811c66acc16ac28faf12\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_fd959082aac158326d87d4b2f06cdf48\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_92193df91c2fd96d3f35d95e633668c7\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_dbf497e8f223bb1777ba7572d0274518\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c02e4ad7b9eb08839523899f40617718\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(3440,8,'_et_dynamic_cached_shortcodes','a:11:{i:0;s:19:\"et_pb_contact_field\";i:1;s:18:\"et_pb_column_inner\";i:2;s:13:\"et_pb_section\";i:3;s:9:\"et_pb_row\";i:4;s:12:\"et_pb_column\";i:5;s:15:\"et_pb_row_inner\";i:6;s:11:\"et_pb_blurb\";i:7;s:12:\"et_pb_button\";i:8;s:18:\"et_pb_contact_form\";i:9;s:11:\"et_pb_image\";i:10;s:10:\"et_pb_text\";}'),(3441,8,'_et_dynamic_cached_attributes','a:5:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:2:{i:0;s:5:\"slide\";i:1;s:4:\"fold\";}s:9:\"font_icon\";a:3:{i:0;s:19:\"&#xe076;||divi||400\";i:1;s:19:\"&#xe090;||divi||400\";i:2;s:19:\"&#xe06b;||divi||400\";}}'),(3442,8,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"enable_all_character_sets\":\"false\"}\";}'),(3443,8,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"tb\":[],\"wpe\":[]}\";i:1;a:51:{s:46:\"et_pb_section_23f52a306c2131e0b891b37ef0ffb28e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_de95dcc726d185ff47515143908839d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_bb5b3c0f1b47d0ddc0047ea96d1d4b4b\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9915a628d2dbb84a06cdd4450f949729\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_3fb9da0402239683ab3fa57999aebc0c\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"hov\";b:1;}s:51:\"et_pb_contact_form_4f3fddc5032d56d3150a3b73efaba7fa\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_31f204403f45acea24115272309bea63\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_25b36436fe4f8a99f59f6601c0a15ac5\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_18c28f7e7417de8ff91c26424c100d95\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bd68f4f4e677bad59672f22b585e6457\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_e8015d0b34661b20ddd70f09c6e9257a\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6f7b06a9f569ee53d56040c828f775e1\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_537550942c908ddc4b27606f038fa9e0\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d851e6436f1b9ad6f7f14e4fb80bc45e\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_3c91fdcbaf9cfb35c3d8f6f84efd21d2\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_83bebafb05c5b563994052e9f15b35d8\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_94fd05ca0e21205a26476ed532323f18\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_08e6c12a81928e5ee2fbdfaa8d5f9a4d\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6892e3222cbc6440393c56f8d1202894\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_d72359428bd543cb82dbbc0c0ab4f111\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9b01b195b682b6eb09424b767cbbbebd\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_ce4647fa2a8d10a3d4042809beec4e49\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5598471832deb4d4c252f89804407181\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_14d9e70b24d923cb859013251e0b7c70\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_ad9fb5efcd71ce8e1e86f13b763768a5\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e47eabee51513532e11562289033230f\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_26c1a1b5db7b69d8cc92effccdae7560\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e7db0c8b1e75c6796dbff9a4d36f81ba\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_6da2bfd2dd954bfc05a45742f50fc4c6\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c22f3d27b050fcef43c61eb1c8316692\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_24bbb7b6f92b1f3d42bc927943f14747\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"hov\";b:1;}s:46:\"et_pb_section_93d2cd653d4ca416ec1778b4d1d5b3ed\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_42a295be971e0f8f3e030c3e949f88e0\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_fba9565255017f97f1f0e937b32ffc77\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_1f2603f103bcf8b0e8f5d0f10dbaeb80\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_51659f6cdcc0dcf95c4c9a5157ca4208\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_648949fc257fbd3a00976604b77ef463\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_29dd9faa367330506f3d91f8e21a8bfc\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_10ac437b9b01dc794a9f57e82a2c1213\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_50513f257acc6ddbde4f1f8bb882ec43\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_90b6502379e5cba98405058ac4fae988\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_3e3c0d18d41d783d48fe1a20fbd128f7\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_6cba1d18104f7f313aafc48ba1d87760\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_245fa1f02f55112b297879e7e92a1c85\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_6dec14578feb1835e850b958cf61afe5\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_7082438657a209db848319a43af7884e\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_3466c3b906ef3cfa787fb40557104b13\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_70d3fd123692f1a50f39018ebb5ed2ac\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_702cae3c5cf1b5c9f7f0691d307a8e9d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f5079e05b3826b4f509e192d269a61b5\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6ac676753c6aa610cfa744e6a0ae6aa1\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(3220,975,'_edit_last','2'),(3221,975,'_wp_page_template','default'),(3222,975,'_et_pb_post_hide_nav','default'),(3223,975,'_et_pb_page_layout','et_right_sidebar'),(3224,975,'_et_pb_side_nav','off'),(3225,975,'_et_pb_use_builder','on'),(3226,975,'_et_pb_first_image',''),(3227,975,'_et_pb_truncate_post',''),(3228,975,'_et_pb_truncate_post_date',''),(3229,975,'_et_pb_old_content',''),(3230,975,'_yoast_wpseo_estimated-reading-time-minutes',''),(3231,975,'_yoast_wpseo_wordproof_timestamp',''),(3232,975,'_edit_lock','1693414022:4'),(3233,975,'_et_pb_built_for_post_type','page'),(3234,975,'_et_pb_ab_subjects',''),(3235,975,'_et_pb_enable_shortcode_tracking',''),(3236,975,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"975\" /]'),(3237,975,'_et_pb_custom_css',''),(3238,975,'_et_pb_gutter_width','3'),(3240,975,'_global_colors_info','{}'),(3241,975,'_et_builder_version','VB|Divi|4.19.2'),(3242,975,'_et_pb_show_page_creation','off'),(3246,975,'_et_builder_dynamic_assets_loading_attr_threshold','6'),(3269,984,'_et_pb_ab_subjects',''),(3270,984,'_et_pb_enable_shortcode_tracking',''),(3271,984,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"984\" /]'),(3272,984,'_et_pb_custom_css',''),(3273,984,'_et_pb_gutter_width','3'),(3275,984,'_global_colors_info','{}'),(3276,984,'_et_builder_version','VB|Divi|4.19.2'),(3277,984,'_et_pb_show_page_creation','off'),(3280,984,'_et_builder_dynamic_assets_loading_attr_threshold','6'),(3434,118,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:18:\"et_pb_column_inner\";i:1;s:19:\"et_pb_contact_field\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:15:\"et_pb_row_inner\";i:7;s:11:\"et_pb_blurb\";i:8;s:10:\"et_pb_code\";i:9;s:18:\"et_pb_contact_form\";i:10;s:11:\"et_pb_image\";i:11;s:10:\"et_pb_menu\";i:12;s:13:\"et_pb_sidebar\";i:13;s:25:\"et_pb_social_media_follow\";i:14;s:10:\"et_pb_text\";}'),(3435,118,'_et_dynamic_cached_attributes','a:6:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:9:\"font_icon\";a:5:{i:0;s:17:\"&#xf879;||fa||900\";i:1;s:19:\"&#xe06b;||divi||400\";i:2;s:17:\"&#xf658;||fa||900\";i:3;s:17:\"&#xf2a0;||fa||900\";i:4;s:17:\"&#xf017;||fa||900\";}s:14:\"social_network\";a:1:{i:0;s:8:\"facebook\";}}'),(3436,118,'_et_builder_module_features_cache','a:2:{i:0;s:111:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"tb\":{\"152\":\"2023-08-29 22:53:39\",\"185\":\"2023-08-30 16:56:37\"},\"wpe\":[]}\";i:1;a:45:{s:46:\"et_pb_section_8f6c8a267889a1c56c34e3e2f8bf65ba\";a:8:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_fcdc69ff297ebe4b032eec6fe8213fc1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_c4950c0707fc64fff870a0935b48d059\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c2f99ed31f38cee8be19b6c38f243437\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e63d2a6b1dfed14809fab41e804535e8\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_bb8771108134dd95c23a8a913d3f1bfa\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_79c24f6d2b1f1122c2d9c56637b4afa3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_516166285ab3fceb47ef47498810e4e3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_ca1a50df95a62a880cb5665ca2f7a658\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_2552f27988d67572ed915c34e6234084\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_57572f4b7079aa472df5ac91522e809b\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c5915b18294d2d03918eddaffca6a406\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_29a89a6b6da15b149e400eb8a7a31d3f\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e7a9f5fdc06e94199a0e8ec2d879e43\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_922bd96c995e63ed559a7d236d4c5b66\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_4494153086e8dfdd99d9e329ef060105\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_b725669300027af77e597d386bac3ac8\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_code_36bb8b62266541613bab7f3a14e0ed84\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_e6c937c351a38d166cc19fabacc322e9\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_55a08106bd1d861e521c664c5bd46a67\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5dbf92e2dbb5c09999a568b241026876\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_code_ee04c161dabc3903a8025ec256603731\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0443520087788e8352786c670f541cb\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_694d213bc81a56bc1b8fce9db19e1cfc\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5fa93a6ce583671dcca0829c03abbe91\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_fe9137654c9e04681c1cc8b3196e2a50\";a:7:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_fa0e2e6c81ea18a54be926452bae69b2\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2a699fc258eb322bfd2c010b05c6b8f4\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_6825ef71acccac6d91b28aab82525b73\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_1e7790146e2c0c57199d352f4c2404a5\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ab4d23dc32d3663bb4d9f81bca77557c\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e554a887fbb6ed44db0e7d2b778066fc\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_ecf51be35e0b630c332ee0f1bcfa3c05\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_48539f2145b33e34baec1265fba6d601\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_adcf5debd4886ee0cfb6337a818c3e9a\";a:7:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4524a94bdb468bea435d54554568bdfc\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_0c9ccd05c8771e0d7b629067ff4ce2c9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_ad418eb0f4180ba5f5a9d1cad71b778a\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_25c82f295ea8a41facc0e2bf23147320\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_cc3a412b727a3f5a356a8663b1bd992f\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_807141cfa02a068c63851638c3de5b6a\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_87a38eabac10d66ed1c6b96a8f4c9a53\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_ff493a2963bae3c35f41886284162f40\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_2581e6cad0f19a065667ba12209bfd48\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8c1a18925a5a6a53e1b0c69c1de412a0\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(3426,984,'_et_dynamic_cached_shortcodes','a:16:{i:0;s:18:\"et_pb_column_inner\";i:1;s:19:\"et_pb_contact_field\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:15:\"et_pb_row_inner\";i:7;s:11:\"et_pb_blurb\";i:8;s:12:\"et_pb_button\";i:9;s:18:\"et_pb_contact_form\";i:10;s:22:\"et_pb_fullwidth_header\";i:11;s:11:\"et_pb_image\";i:12;s:10:\"et_pb_menu\";i:13;s:13:\"et_pb_sidebar\";i:14;s:25:\"et_pb_social_media_follow\";i:15;s:10:\"et_pb_text\";}'),(3423,104,'_et_dynamic_cached_shortcodes','a:16:{i:0;s:18:\"et_pb_column_inner\";i:1;s:19:\"et_pb_contact_field\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:15:\"et_pb_row_inner\";i:7;s:11:\"et_pb_blurb\";i:8;s:12:\"et_pb_button\";i:9;s:18:\"et_pb_contact_form\";i:10;s:22:\"et_pb_fullwidth_header\";i:11;s:11:\"et_pb_image\";i:12;s:10:\"et_pb_menu\";i:13;s:13:\"et_pb_sidebar\";i:14;s:25:\"et_pb_social_media_follow\";i:15;s:10:\"et_pb_text\";}'),(3424,104,'_et_dynamic_cached_attributes','a:8:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"sticky_position\";a:1:{i:0;s:3:\"top\";}s:9:\"font_icon\";a:4:{i:0;s:17:\"&#xf879;||fa||900\";i:1;s:19:\"&#xe06b;||divi||400\";i:2;s:17:\"&#xf2a0;||fa||900\";i:3;s:17:\"&#xf017;||fa||900\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:6:\"bounce\";}s:14:\"social_network\";a:1:{i:0;s:8:\"facebook\";}}'),(3425,104,'_et_builder_module_features_cache','a:2:{i:0;s:111:\"{\"gph\":-1,\"divi\":\"4.22.1\",\"wp\":\"6.3.1\",\"tb\":{\"152\":\"2023-08-29 22:53:39\",\"185\":\"2023-08-29 22:53:59\"},\"wpe\":[]}\";i:1;a:56:{s:46:\"et_pb_section_8f6c8a267889a1c56c34e3e2f8bf65ba\";a:8:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"sti\";b:1;}s:45:\"et_pb_column_fcdc69ff297ebe4b032eec6fe8213fc1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_c4950c0707fc64fff870a0935b48d059\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c2f99ed31f38cee8be19b6c38f243437\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e63d2a6b1dfed14809fab41e804535e8\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_bb8771108134dd95c23a8a913d3f1bfa\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_79c24f6d2b1f1122c2d9c56637b4afa3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_516166285ab3fceb47ef47498810e4e3\";a:8:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_ca1a50df95a62a880cb5665ca2f7a658\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_2552f27988d67572ed915c34e6234084\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_57572f4b7079aa472df5ac91522e809b\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0c5919574d1a0388888441305e31a3b\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_c5ff6b114efbc4ca376806e5639f685a\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_bef5102bb539bb0a35ede5e80c0fe2ce\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_de2fa3e840d2bede7feae3cb2cbe00a6\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b8fcda2f4c836fec5b4f6629677ddb69\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d971d292f3d31dc50f71e93c5d3b9c64\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_de2fa3e840d2bede7feae3cb2cbe00a6\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_bedbbbde60b848638ff286b929f09fb1\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_2159030dd878be0205039c3415c37a27\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c0ba2c52802aa9c69628db7a5795bb84\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_121d010f76c7d65a826317d6a1b5c02d\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_7f414ecf2df32be221fc0e4b89910889\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_22e4f8ae8d6728b38200f9b0761be4cb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a0ac9bb96284fbf5c878a26eecaec608\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_cab8f82212606889a5c9fdc7caa0cbbe\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_8368332ec2743b05a8482f944b2337b5\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3cf0833c297f5b770aa71d0350edbbc3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4f36dcbca0303a1073db4eee3a5a3f4d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_2505e9f02a86749a36959bd7ad880939\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_04d5669165bf8e70c15a732f673fcf78\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_78754e5327fd4ed820235fc981a01640\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_514004b6a8e1d51655234314f4ed4821\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0443520087788e8352786c670f541cb\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_694d213bc81a56bc1b8fce9db19e1cfc\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5fa93a6ce583671dcca0829c03abbe91\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_1ca95cd8937af9f649362dec9681bbcf\";a:7:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_fa0e2e6c81ea18a54be926452bae69b2\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2a699fc258eb322bfd2c010b05c6b8f4\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_6825ef71acccac6d91b28aab82525b73\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_1e7790146e2c0c57199d352f4c2404a5\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ab4d23dc32d3663bb4d9f81bca77557c\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_e554a887fbb6ed44db0e7d2b778066fc\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_ecf51be35e0b630c332ee0f1bcfa3c05\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_48539f2145b33e34baec1265fba6d601\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_sidebar_adcf5debd4886ee0cfb6337a818c3e9a\";a:7:{s:4:\"glde\";a:6:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4524a94bdb468bea435d54554568bdfc\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_0c9ccd05c8771e0d7b629067ff4ce2c9\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_ad418eb0f4180ba5f5a9d1cad71b778a\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_25c82f295ea8a41facc0e2bf23147320\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_3f60b5023224c35bafd3c9b1a6794e6f\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_807141cfa02a068c63851638c3de5b6a\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_87a38eabac10d66ed1c6b96a8f4c9a53\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_ff493a2963bae3c35f41886284162f40\";a:7:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_2581e6cad0f19a065667ba12209bfd48\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8c1a18925a5a6a53e1b0c69c1de412a0\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}');
/*!40000 ALTER TABLE `wpvu_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpvu_posts`
--

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

--
-- Dumping data for table `wpvu_posts`
--

LOCK TABLES `wpvu_posts` WRITE;
/*!40000 ALTER TABLE `wpvu_posts` DISABLE KEYS */;
INSERT INTO `wpvu_posts` VALUES (3,1,'2021-12-12 21:57:24','2021-12-12 21:57:24','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://capitalbookkeepingco.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-12-12 21:57:24','2021-12-12 21:57:24','',0,'https://capitalbookkeepingco.com/?page_id=3',0,'page','',0),(5,1,'2021-12-13 15:05:05','2021-12-13 15:05:05','.wpcf7 input, textarea.wpcf7-form-control {\n    background: transparent;\n    border: 2px solid #fff;\n    padding: 10px;\n    font-size: 16px;\n    color: #fff;\n	width: 100%;\n}\n\n\n.wpcf7 ::placeholder{\n  color: #fff;\n \n}\n\n.wpcf7 input[type=text]:focus {\n    border-color: #fff!important;\n    color: #fff;\n}\n\n.wpcf7 form.sent .wpcf7-response-output {\n    font-size: 20px;\n    color: #fff;\n}\n\n.wpcf7 form.invalid .wpcf7-response-output {\n    color: #fff;\n}\n\ntextarea.wpcf7-form-control {\n\n    height: 150px;\n    \n}\n\ninput.wpcf7-form-control.wpcf7-submit.has-spinner {\n    background: #0c71c3;\n    border-color: #0c71c3;\n	  transition: all 0.4s ease;\n}\n\ninput.wpcf7-form-control.wpcf7-submit.has-spinner:hover {\n    background: transparent;\n    border-color: #fff;\n}','Divi_Child','','publish','closed','closed','','divi_child','','','2023-08-29 20:32:33','2023-08-29 20:32:33','',0,'https://capitalbookkeepingco.com/?p=5',0,'custom_css','',0),(6,1,'2021-12-13 15:05:05','2021-12-13 15:05:05','','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2021-12-13 15:05:05','2021-12-13 15:05:05','',5,'https://capitalbookkeepingco.com/?p=6',0,'revision','',0),(8,1,'2021-12-13 15:12:04','2021-12-13 15:12:04','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" use_redirect=\"on\" redirect_url=\"/thank-you/\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" align=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients relay on us to have integrity and transparency.</h2>\n&nbsp;[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.14.2\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-120px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p><span>Without trust we don’t truly collaborate; we merely coordinate or, at best, cooperate.  It is trust that transforms a group of people into a team.”  We would like you to join our team.</span></p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 40 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','publish','closed','closed','','professional-bookkeepers','','','2022-03-10 01:08:21','2022-03-10 01:08:21','',0,'https://capitalbookkeepingco.com/?page_id=8',0,'page','',0),(9,1,'2021-12-13 15:08:25','2021-12-13 15:08:25','','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 15:08:25','2021-12-13 15:08:25','',8,'https://capitalbookkeepingco.com/?p=9',0,'revision','',0),(10,1,'2021-12-13 15:09:27','2021-12-13 15:09:27','','Accountant-Image-33','','inherit','open','closed','','accountant-image-33','','','2021-12-13 15:09:27','2021-12-13 15:09:27','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-33.jpg',0,'attachment','image/jpeg',0),(11,1,'2021-12-13 15:09:29','2021-12-13 15:09:29','','Accountant-Image-36','','inherit','open','closed','','accountant-image-36','','','2021-12-13 15:09:29','2021-12-13 15:09:29','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg',0,'attachment','image/jpeg',0),(12,1,'2021-12-13 15:09:30','2021-12-13 15:09:30','','Accountant-Image-35','','inherit','open','closed','','accountant-image-35','','','2021-12-13 15:09:30','2021-12-13 15:09:30','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg',0,'attachment','image/jpeg',0),(13,1,'2021-12-13 15:09:30','2021-12-13 15:09:30','','Accountant-Image-34','','inherit','open','closed','','accountant-image-34','','','2021-12-13 15:09:30','2021-12-13 15:09:30','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg',0,'attachment','image/jpeg',0),(14,1,'2021-12-13 15:09:31','2021-12-13 15:09:31','','Accountant-Image-02','','inherit','open','closed','','accountant-image-02','','','2021-12-13 15:09:31','2021-12-13 15:09:31','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-02.jpg',0,'attachment','image/jpeg',0),(15,1,'2021-12-13 15:09:35','2021-12-13 15:09:35','','accountant-01','','inherit','open','closed','','accountant-01','','','2021-12-13 15:09:35','2021-12-13 15:09:35','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg',0,'attachment','image/jpeg',0),(16,1,'2021-12-13 15:09:36','2021-12-13 15:09:36','','logo_04','','inherit','open','closed','','logo_04','','','2021-12-13 15:09:36','2021-12-13 15:09:36','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png',0,'attachment','image/png',0),(17,1,'2021-12-13 15:09:36','2021-12-13 15:09:36','','logo_03','','inherit','open','closed','','logo_03','','','2021-12-13 15:09:36','2021-12-13 15:09:36','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png',0,'attachment','image/png',0),(18,1,'2021-12-13 15:09:36','2021-12-13 15:09:36','','logo_02','','inherit','open','closed','','logo_02','','','2021-12-13 15:09:36','2021-12-13 15:09:36','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png',0,'attachment','image/png',0),(19,1,'2021-12-13 15:09:36','2021-12-13 15:09:36','','logo_01','','inherit','open','closed','','logo_01','','','2021-12-13 15:09:36','2021-12-13 15:09:36','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png',0,'attachment','image/png',0),(20,1,'2021-12-13 15:09:41','2021-12-13 15:09:41','','Accountant-Image-38','','inherit','open','closed','','accountant-image-38','','','2021-12-13 15:09:41','2021-12-13 15:09:41','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png',0,'attachment','image/png',0),(21,1,'2021-12-13 15:09:47','2021-12-13 15:09:47','','Accountant-Image-39','','inherit','open','closed','','accountant-image-39','','','2021-12-13 15:09:47','2021-12-13 15:09:47','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png',0,'attachment','image/png',0),(23,1,'2021-12-13 15:15:09','2021-12-13 15:15:09','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#002e4f\" background_color_gradient_end=\"rgba(8,70,102,0.8)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-33.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1>An Accountant You Can Rely On</h1>\r\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>What we Do</h4>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>We Cover an Array of Individual &amp; Corporates Accounting Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Individual &amp; Corporate Taxes </h3>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Financial Planning</h3>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Audit Defense &amp; Services</h3>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"14%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" inner_width_phone=\"100%\" inner_max_width_phone=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||30px||false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_video src=\"https://www.youtube.com/watch?v=FkQuawiGWUw\" image_src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-02.jpg\" _builder_version=\"3.9\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Get Started</h4>\r\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>At Divi Accountants, No Client is Too Big or Small</h2>\r\n<p>Donec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus </p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\" column_structure=\"1_4,1_4,1_4,1_4\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" align_phone=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" inner_width_phone=\"100%\" inner_max_width_phone=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog\" _builder_version=\"3.22\" background_color=\"#f7f7fa\" custom_padding=\"|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Open Sans|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Accounting Resources &amp; Articles</h2>\r[/et_pb_text][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" masonry_tile_background_color=\"rgba(0,0,0,0)\" _builder_version=\"3.9\" header_font=\"Open Sans|600|||||||\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" meta_font=\"||||||||\" meta_font_size=\"14px\" border_width_all=\"0px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map\" _builder_version=\"3.22\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_map address=\"San Francisco, CA, USA\" address_lat=\"37.7749295\" address_lng=\"-122.4194155\" mouse_wheel=\"off\" _builder_version=\"3.9\" filter_saturate=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_map_pin pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.4194155\" _builder_version=\"3.9\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" inner_width_phone=\"100%\" inner_max_width_phone=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"info@diviaccountant.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.13.0\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"(235) 462-3512\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.13.0\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"1234 Divi St. #1000, San Francisco, CA 93215\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.13.0\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.13.0\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_blend=\"multiply\" custom_margin=\"-60px|||\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_contact_form captcha=\"off\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" theme_builder_area=\"post_content\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 15:15:09','2021-12-13 15:15:09','',8,'https://capitalbookkeepingco.com/?p=23',0,'revision','',0),(88,1,'2021-12-16 15:04:51','2021-12-16 15:04:51','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" use_redirect=\"on\" redirect_url=\"/thank-you/\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" align=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017. With over 40 combined years of experienced bookkeeping, servicing Entrepreneurs and small to medium sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.14.2\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-120px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Our bookkeepers are professional, accredited and friendly bookkeepers that have been with us for a long time.</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 50 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-16 15:04:51','2021-12-16 15:04:51','',8,'https://capitalbookkeepingco.com/?p=88',0,'revision','',0),(61,1,'2021-12-13 19:52:16','2021-12-13 19:52:16','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Focus On Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 19:52:16','2021-12-13 19:52:16','',8,'https://capitalbookkeepingco.com/?p=61',0,'revision','',0),(30,1,'2021-12-13 15:40:57','2021-12-13 15:40:57','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#002e4f\" background_color_gradient_end=\"rgba(8,70,102,0.8)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-33.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>A Bookkeeping You Can Rely On</h1>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.13.1\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"14%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||30px||false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_video src=\"https://www.youtube.com/watch?v=FkQuawiGWUw\" image_src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-02.jpg\" _builder_version=\"3.9\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"info@Bookkeeping.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"(235) 462-3512\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" \" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 15:40:57','2021-12-13 15:40:57','',8,'https://capitalbookkeepingco.com/?p=30',0,'revision','',0),(27,1,'2021-12-13 15:23:31','2021-12-13 15:23:31','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#002e4f\" background_color_gradient_end=\"rgba(8,70,102,0.8)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-33.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>A Bookkeeping You Can Rely On</h1>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.13.1\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Individual &amp; Corporate Taxes</h3>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Financial Planning</h3>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Audit Defense &amp; Services</h3>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"14%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||30px||false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_video src=\"https://www.youtube.com/watch?v=FkQuawiGWUw\" image_src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-02.jpg\" _builder_version=\"3.9\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>At Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"info@Bookkeeping.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"(235) 462-3512\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\" \" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 15:23:31','2021-12-13 15:23:31','',8,'https://capitalbookkeepingco.com/?p=27',0,'revision','',0),(25,1,'2021-12-13 15:17:35','2021-12-13 15:17:35','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#002e4f\" background_color_gradient_end=\"rgba(8,70,102,0.8)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-33.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>An Accountant You Can Rely On</h1>\r\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.13.1\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Accounting Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>Individual &amp; Corporate Taxes </h3>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Financial Planning</h3>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Audit Defense &amp; Services</h3>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"14%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||30px||false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_video src=\"https://www.youtube.com/watch?v=FkQuawiGWUw\" image_src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-02.jpg\" _builder_version=\"3.9\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\r\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Divi Accountants, No Client is Too Big or Small</h2>\r\n<p>Donec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus </p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog\" _builder_version=\"3.22\" background_color=\"#f7f7fa\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Open Sans|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h2>Accounting Resources &amp; Articles</h2>\r[/et_pb_text][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" masonry_tile_background_color=\"rgba(0,0,0,0)\" _builder_version=\"3.9\" header_font=\"Open Sans|600|||||||\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" meta_font=\"||||||||\" meta_font_size=\"14px\" border_width_all=\"0px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_fullwidth_map address=\"San Francisco, CA, USA\" address_lat=\"37.7749295\" address_lng=\"-122.4194155\" mouse_wheel=\"off\" _builder_version=\"3.9\" filter_saturate=\"10%\" global_colors_info=\"{}\"][et_pb_map_pin pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.4194155\" _builder_version=\"3.9\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"info@diviaccountant.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.13.0\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"(235) 462-3512\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.13.0\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1234 Divi St. #1000, San Francisco, CA 93215\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.13.0\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.13.0\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 15:17:35','2021-12-13 15:17:35','',8,'https://capitalbookkeepingco.com/?p=25',0,'revision','',0),(33,1,'2021-12-13 15:42:05','2021-12-13 15:42:05','','Capital Bookkeeping Company','','inherit','open','closed','','capital-bookkeeping-company','','','2021-12-13 15:42:05','2021-12-13 15:42:05','',8,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png',0,'attachment','image/png',0),(36,1,'2021-12-13 15:44:07','2021-12-13 15:44:07','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#002e4f\" background_color_gradient_end=\"rgba(8,70,102,0.8)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-33.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Capital Bookkeeping You Can Rely On</h1>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"14%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||30px||false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"info@Bookkeeping.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"(235) 462-3512\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" \" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 15:44:07','2021-12-13 15:44:07','',8,'https://capitalbookkeepingco.com/?p=36',0,'revision','',0),(34,1,'2021-12-13 15:43:40','2021-12-13 15:43:40','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#002e4f\" background_color_gradient_end=\"rgba(8,70,102,0.8)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-33.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>A Bookkeeping You Can Rely On</h1>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" hover_enabled=\"0\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"14%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||30px||false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image _builder_version=\"4.14.2\" _module_preset=\"default\" title_text=\"Capital Bookkeeping Company\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"info@Bookkeeping.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"(235) 462-3512\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" \" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 15:43:40','2021-12-13 15:43:40','',8,'https://capitalbookkeepingco.com/?p=34',0,'revision','',0),(41,1,'2021-12-13 15:51:30','2021-12-13 15:51:30','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#002e4f\" background_color_gradient_end=\"rgba(8,70,102,0.8)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://image.shutterstock.com/shutterstock/photos/628843823/display_1500/stock-photo-close-up-view-of-bookkeeper-or-financial-inspector-hands-making-report-calculating-or-checking-628843823.jpg\" custom_padding=\"|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>Capital Bookkeeping You Can Rely On</h1>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 15:51:30','2021-12-13 15:51:30','',8,'https://capitalbookkeepingco.com/?p=41',0,'revision','',0),(39,1,'2021-12-13 15:49:53','2021-12-13 15:49:53','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#002e4f\" background_color_gradient_end=\"rgba(8,70,102,0.8)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-33.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>Capital Bookkeeping You Can Rely On</h1>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" hover_enabled=\"0\" make_fullwidth=\"on\" global_colors_info=\"{}\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" url=\"tel:250-707-8290\" url_new_window=\"on\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 15:49:53','2021-12-13 15:49:53','',8,'https://capitalbookkeepingco.com/?p=39',0,'revision','',0),(42,1,'2021-12-13 18:26:33','2021-12-13 18:26:33','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://image.shutterstock.com/shutterstock/photos/628843823/display_1500/stock-photo-close-up-view-of-bookkeeper-or-financial-inspector-hands-making-report-calculating-or-checking-628843823.jpg\" custom_padding=\"|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>Capital Bookkeeping You Can Rely On</h1>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 18:26:33','2021-12-13 18:26:33','',8,'https://capitalbookkeepingco.com/?p=42',0,'revision','',0),(44,1,'2021-12-13 18:35:47','2021-12-13 18:35:47','','Close,Up,View,Of,Bookkeeper,Or,Financial,Inspector,Hands,Making','Close up view of bookkeeper or financial inspector hands making report, calculating or checking balance. Home finances, investment, economy, saving money or insurance concept','inherit','open','closed','','closeupviewofbookkeeperorfinancialinspectorhandsmaking','','','2021-12-13 18:35:47','2021-12-13 18:35:47','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg',0,'attachment','image/jpeg',0),(45,1,'2021-12-13 18:36:02','2021-12-13 18:36:02','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Close,Up,View,Of,Bookkeeper,Or,Financial,Inspector,Hands,Making\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>Capital Bookkeeping You Can Rely On</h1>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 18:36:02','2021-12-13 18:36:02','',8,'https://capitalbookkeepingco.com/?p=45',0,'revision','',0),(46,1,'2021-12-13 18:43:17','2021-12-13 18:43:17','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>Capital Bookkeeping You Can Rely On</h1>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Curabitur arcu erat, accumsan id imperdiet</p>[/et_pb_text][et_pb_button button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" hover_enabled=\"0\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_url=\"tel:250-707-8290\" url_new_window=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 18:43:17','2021-12-13 18:43:17','',8,'https://capitalbookkeepingco.com/?p=46',0,'revision','',0),(49,1,'2021-12-13 19:25:51','2021-12-13 19:25:51','','Capital-Bookkeeping-Company','','inherit','open','closed','','capital-bookkeeping-company-2','','','2021-12-13 19:25:51','2021-12-13 19:25:51','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company.png',0,'attachment','image/png',0),(59,1,'2021-12-13 19:50:18','2021-12-13 19:50:18','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>We Focus On Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 19:50:18','2021-12-13 19:50:18','',8,'https://capitalbookkeepingco.com/?p=59',0,'revision','',0),(50,1,'2021-12-13 19:26:29','2021-12-13 19:26:29','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-300x73.png\" alt=\"\" class=\"wp-image-49 alignnone size-medium\" width=\"300\" height=\"73\" />Capital Bookkeeping Co You Can Rely On</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Capital-Bookkeeping-Company\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 19:26:29','2021-12-13 19:26:29','',8,'https://capitalbookkeepingco.com/?p=50',0,'revision','',0),(52,1,'2021-12-13 19:41:14','2021-12-13 19:41:14','','Capital-Bookkeeping-Company1','','inherit','open','closed','','capital-bookkeeping-company1','','','2021-12-13 19:41:14','2021-12-13 19:41:14','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png',0,'attachment','image/png',0),(53,1,'2021-12-13 19:42:07','2021-12-13 19:42:07','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"55px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company.png\" title_text=\"Capital-Bookkeeping-Company\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 19:42:07','2021-12-13 19:42:07','',8,'https://capitalbookkeepingco.com/?p=53',0,'revision','',0),(56,1,'2021-12-13 19:46:19','2021-12-13 19:46:19','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 19:46:19','2021-12-13 19:46:19','',8,'https://capitalbookkeepingco.com/?p=56',0,'revision','',0),(55,1,'2021-12-13 19:42:20','2021-12-13 19:42:20','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"55px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 19:42:20','2021-12-13 19:42:20','',8,'https://capitalbookkeepingco.com/?p=55',0,'revision','',0),(57,1,'2021-12-13 19:47:55','2021-12-13 19:47:55','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" hover_enabled=\"0\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Cover an Array of Individual &amp; Corporates Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][et_pb_button button_text=\"Learn more\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"0px|0px|0px|0px|true|true\" button_text_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#00e2c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|desktop\" background_color_1=\"#4e7c97\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"0px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"Testimonials\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"120px|0px|120px|0px|false|false\" custom_padding_tablet=\"60px||60px||true\" custom_padding_phone=\"\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Jone Than\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"Stacy Waller\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||30px|\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][et_pb_testimonial author=\"William Davidson\" quote_icon=\"off\" _builder_version=\"3.9\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_margin=\"||-10%|\" custom_margin_tablet=\"||30px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" animation_intensity_slide=\"10%\" border_color_all=\"#f7ad00\" border_width_left=\"6px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"70px\" box_shadow_color=\"rgba(0,0,0,0.06)\" locked=\"off\" global_colors_info=\"{}\"]<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Curabitur aliquet quam id dui posuere blandit. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.\"</p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\r\n<h2>Our Clients Are Like Family</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Contact Us\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"capitalbookkeepingcompany@gmail.com\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 8am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trust Worthy</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 19:47:55','2021-12-13 19:47:55','',8,'https://capitalbookkeepingco.com/?p=57',0,'revision','',0),(64,1,'2021-12-13 20:02:22','2021-12-13 20:02:22','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Focus On Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Keeping your financial statement in shoebox for an extended period of time costs you money. We can help you save money and get organized without pressure.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"Email\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Experienced</h3>\nWe have over 8 years experience  in helping our clients with bookkeeping, payroll and industry experience[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 20:02:22','2021-12-13 20:02:22','',8,'https://capitalbookkeepingco.com/?p=64',0,'revision','',0),(63,1,'2021-12-13 20:02:05','2021-12-13 20:02:05','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Focus On Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Keeping your financial statement in s hoebox for an extended period of time costs you money. We can help you save money and get organized without pressure.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"Email\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Experienced</h3>\nWe have over 8 years experience  in helping our clients with bookkeeping, payroll and industry experience[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>\r[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 20:02:05','2021-12-13 20:02:05','',8,'https://capitalbookkeepingco.com/?p=63',0,'revision','',0),(68,1,'2021-12-13 20:06:16','2021-12-13 20:06:16','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Focus On Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Keeping your financial statement in shoebox for an extended period of time costs you money. We can help you save money and get organized without pressure.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\nWe have over 8 years experience  in helping our clients with bookkeeping, payroll and industry experience[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\n<p>Our bookkeepers are professional, accredited and friendly  bookkeepers that have been with us for a long time.</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 20:06:16','2021-12-13 20:06:16','',8,'https://capitalbookkeepingco.com/?p=68',0,'revision','',0),(67,1,'2021-12-13 20:06:13','2021-12-13 20:06:13','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Focus On Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Keeping your financial statement in shoebox for an extended period of time costs you money. We can help you save money and get organized without pressure.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\nWe have over 8 years experience  in helping our clients with bookkeeping, payroll and industry experience[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\n<p>Our bookkeepers are professional, accredited and friendly  bookkeepers that have been with us for a long time.</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 20:06:13','2021-12-13 20:06:13','',8,'https://capitalbookkeepingco.com/?p=67',0,'revision','',0);
INSERT INTO `wpvu_posts` VALUES (66,1,'2021-12-13 20:05:30','2021-12-13 20:05:30','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Focus On Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-34.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Keeping your financial statement in shoebox for an extended period of time costs you money. We can help you save money and get organized without pressure.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"Email\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" hover_enabled=\"0\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Experienced</h3>\nWe have over 8 years experience  in helping our clients with bookkeeping, payroll and industry experience[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Professional</h3>\n<p>Our bookkeepers are professional, accredited and friendly  bookkeepers that have been with us for a long time.</p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','landing page','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 20:05:30','2021-12-13 20:05:30','',8,'https://capitalbookkeepingco.com/?p=66',0,'revision','',0),(77,1,'2021-12-15 16:14:45','2021-12-15 16:14:45','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" align=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017. With over 40 combined years of experienced bookkeeping, servicing Entrepreneurs and small to medium sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.14.2\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-120px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Trustworthy</h3>\n<p>Our bookkeepers are professional, accredited and friendly bookkeepers that have been with us for a long time.</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 50 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-15 16:14:45','2021-12-15 16:14:45','',8,'https://capitalbookkeepingco.com/?p=77',0,'revision','',0),(74,1,'2021-12-15 14:53:16','2021-12-15 14:53:16','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" hover_enabled=\"0\" make_fullwidth=\"on\" global_colors_info=\"{}\" padding_left_1=\"1%\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017. With over 40 combined years of experienced bookkeeping, servicing Entrepreneurs and small to medium sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"-120px||||false|false\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\" custom_margin_phone=\"0px||||false|false\" custom_margin_tablet=\"-120px||||false|false\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 50 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\n<p>Our bookkeepers are professional, accredited and friendly  bookkeepers that have been with us for a long time.</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-15 14:53:16','2021-12-15 14:53:16','',8,'https://capitalbookkeepingco.com/?p=74',0,'revision','',0),(75,1,'2021-12-15 14:53:34','2021-12-15 14:53:34','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" hover_enabled=\"0\" make_fullwidth=\"on\" global_colors_info=\"{}\" padding_left_1=\"1%\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" align=\"center\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017. With over 40 combined years of experienced bookkeeping, servicing Entrepreneurs and small to medium sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"-120px||||false|false\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\" custom_margin_phone=\"0px||||false|false\" custom_margin_tablet=\"-120px||||false|false\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 50 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\n<p>Our bookkeepers are professional, accredited and friendly  bookkeepers that have been with us for a long time.</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-15 14:53:34','2021-12-15 14:53:34','',8,'https://capitalbookkeepingco.com/?p=75',0,'revision','',0),(70,1,'2021-12-13 20:18:46','2021-12-13 20:18:46','','calculator-g07b5bc4da_640','','inherit','open','closed','','calculator-g07b5bc4da_640','','','2021-12-13 20:18:46','2021-12-13 20:18:46','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg',0,'attachment','image/jpeg',0),(73,1,'2021-12-14 20:13:40','2021-12-14 20:13:40','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" hover_enabled=\"0\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" hover_enabled=\"0\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" width=\"600px\" sticky_enabled=\"0\"]<h2>We Focus On Bookkeeping Services For Corporations &amp; Small Businesses</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"500px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2> No Client is Too Big or Small</h2>\n<p>Donec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Keeping your financial statement in shoebox for an extended period of time costs you money. We can help you save money and get organized without pressure.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" hover_enabled=\"0\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 50 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\n<p>Our bookkeepers are professional, accredited and friendly  bookkeepers that have been with us for a long time.</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-14 20:13:40','2021-12-14 20:13:40','',8,'https://capitalbookkeepingco.com/?p=73',0,'revision','',0),(71,1,'2021-12-13 20:19:11','2021-12-13 20:19:11','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,234,222,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping Co.  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#12eaa6\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>What we Do</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Focus On Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"calculator-g07b5bc4da_640\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"About Us\" button_alignment=\"right\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#084666\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"0px||30px||false|false\" custom_padding=\"60px|32px|60px|32px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#044f72\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#044f72\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Don\'t Let the Complexities of Your Financials Burden You Any Longer</h2>\n<p>Keeping your financial statement in shoebox for an extended period of time costs you money. We can help you save money and get organized without pressure.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#12eaa6\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"|10%||10%|false|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"600ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"#a2aab2\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_last_edited=\"off|desktop\" locked=\"off\" global_colors_info=\"{}\"]<h4>About Us</h4>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width=\"520px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>At Capital Bookkeeping, No Client is Too Big or Small</h2>\nDonec rutrum congue leo eget malesuada. Cras ultricies ligula sed magna dictum porta. Vestibulum ante ipsum primis in faucibus[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\r\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>\r[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" Capital Bookkeeping Co.\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque velit nisi, pretium ut lacinia in</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\nWe have over 8 years experience  in helping our clients with bookkeeping, payroll and industry experience[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#ffffff\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"400ms\" global_colors_info=\"{}\"]<h3>Professional</h3>\n<p>Our bookkeepers are professional, accredited and friendly  bookkeepers that have been with us for a long time.</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-13 20:19:11','2021-12-13 20:19:11','',8,'https://capitalbookkeepingco.com/?p=71',0,'revision','',0),(76,1,'2021-12-15 16:13:05','2021-12-15 16:13:05','','Theme Builder Layout','','publish','open','closed','','theme-builder-layout','','','2021-12-15 16:13:05','2021-12-15 16:13:05','',0,'https://capitalbookkeepingco.com/et_header_layout/theme-builder-layout/',0,'et_header_layout','',0),(78,1,'2021-12-15 19:04:36','2021-12-15 19:04:36','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Thank You\" subhead=\"For Contacting Us\" text_orientation=\"center\" header_fullscreen=\"on\" button_one_text=\"Return Back \" button_one_url=\"/professional-bookkeepers/\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.44)\" background_color_gradient_end=\"rgba(41,196,169,0.52)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section]','Thank You','','publish','closed','closed','','thank-you','','','2021-12-15 19:07:32','2021-12-15 19:07:32','',0,'https://capitalbookkeepingco.com/?page_id=78',0,'page','',0),(79,1,'2021-12-15 19:02:27','2021-12-15 19:02:27','','Thank You','','inherit','closed','closed','','78-revision-v1','','','2021-12-15 19:02:27','2021-12-15 19:02:27','',78,'https://capitalbookkeepingco.com/?p=79',0,'revision','',0),(84,1,'2021-12-15 19:05:40','2021-12-15 19:05:40','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" hover_enabled=\"0\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\" use_redirect=\"on\" redirect_url=\"/thank-you/\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships & Personal)</h3>\n<ul>\n	<li>Set up of accounts in SAGE (Simply Accounting) or Quick-books</li>\n	<li>Accounts Receivable (Invoicing, Statements)</li>\n	<li>Accounts Payable (Paying Invoices)</li>\n	<li>Bank and credit card reconciliations</li>\n	<li>Monthly &amp; yearly financial statement preparations</li>\n	<li>Sales tax reconciliation and remittance</li>\n	<li>Job Costing</li>\n	<li>Budgeting</li>\n	<li>Grant application assistance</li>\n	<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit (Charities, Religious Organizations)</li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" align=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017. With over 40 combined years of experienced bookkeeping, servicing Entrepreneurs and small to medium sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients rely on us to be honest and truthful.</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auc</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.14.2\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-120px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p>Our bookkeepers are professional, accredited and friendly bookkeepers that have been with us for a long time.</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 50 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-15 19:05:40','2021-12-15 19:05:40','',8,'https://capitalbookkeepingco.com/?p=84',0,'revision','',0),(83,1,'2021-12-15 19:04:51','2021-12-15 19:04:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Thank You\" subhead=\"For Contacting Us\" button_one_text=\"Return Back \" button_one_url=\"/professional-bookkeepers/\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.44)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section]','Thank You','','inherit','closed','closed','','78-revision-v1','','','2021-12-15 19:04:51','2021-12-15 19:04:51','',78,'https://capitalbookkeepingco.com/?p=83',0,'revision','',0),(81,1,'2021-12-15 19:04:36','2021-12-15 19:04:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\"][et_pb_fullwidth_header _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title=\"Thank You\" subhead=\"For Contacting Us\" button_one_text=\"Return Back \" button_one_url=\"/professional-bookkeepers/\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.44)\" background_color_gradient_overlays_image=\"on\" title_text=\"Close,Up,View,Of,Bookkeeper,Or,Financial,Inspector,Hands,Making\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','Thank You','','inherit','closed','closed','','78-revision-v1','','','2021-12-15 19:04:36','2021-12-15 19:04:36','',78,'https://capitalbookkeepingco.com/?p=81',0,'revision','',0),(87,1,'2021-12-15 19:07:29','2021-12-15 19:07:29','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Thank You\" subhead=\"For Contacting Us\" text_orientation=\"center\" header_fullscreen=\"on\" button_one_text=\"Return Back \" button_one_url=\"/professional-bookkeepers/\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.44)\" background_color_gradient_end=\"rgba(41,196,169,0.52)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section]','Thank You','','inherit','closed','closed','','78-revision-v1','','','2021-12-15 19:07:29','2021-12-15 19:07:29','',78,'https://capitalbookkeepingco.com/?p=87',0,'revision','',0),(86,1,'2021-12-15 19:07:11','2021-12-15 19:07:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" inner_shadow=\"on\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"Thank You\" subhead=\"For Contacting Us\" button_one_text=\"Return Back \" button_one_url=\"/professional-bookkeepers/\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.44)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" header_fullscreen=\"on\" text_orientation=\"center\" sticky_enabled=\"0\" background_color_gradient_end=\"rgba(41,196,169,0.52)\"][/et_pb_fullwidth_header][/et_pb_section]','Thank You','','inherit','closed','closed','','78-revision-v1','','','2021-12-15 19:07:11','2021-12-15 19:07:11','',78,'https://capitalbookkeepingco.com/?p=86',0,'revision','',0),(89,1,'2021-12-16 17:08:27','2021-12-16 17:08:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.16\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(0,0,0,0.48) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li>Account set up - SAGE/QuickBooks</li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#FFFFFF\" padding_top_1=\"1%\" padding_bottom_1=\"0px\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px|true|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2>No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based  business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.16\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||0px||false|false\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" module_id=\"team\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_3_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena \" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/04/Trena-Close-use-this-photo-1-scaled.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion_item open=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_css_main_element=\"display:none;\" global_colors_info=\"{}\"][/et_pb_accordion_item][et_pb_accordion_item title=\"Kelowna BC \" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<p>Ever searched for a place with pleasing scenery, beautiful weather in all four seasons, also having several amenities you can\'t run tired of? Search no more. Kelowna is just the place for you. From excellent health care to an exceptional educational system and fun recreational activities for the whole family to enjoy, Kelowna is sure to live up to all reasonable expectations.</p>\n<p>Kelowna is famous for its exquisite wineries, beautiful landscape of high mountains, orchards, pine forest, and vast vineyards. It is very well a paradise, located in southern Canada in the Okanagan Valley.</p>\n<ul>\n<li><strong> Its People</strong></li>\n</ul>\n<p>Over the last years, the increasing population in the city is a clear indication of how much wonder the city has to offer as more people come to love it. It\'s, in fact, one of the fastest-growing cities in Canada. Meeting new people is one of the best experiences you\'re sure to have in Kelowna. Coming across someone with similar interests and backgrounds as you is a given. Its people are hospitable and not afraid to help a stranger find their way around.</p>\n<ul>\n<li><strong>Its Weather</strong></li>\n</ul>\n<p>The weather is satisfactory for a city where the summer temperature stays around thirty degrees Celsius on average. In all four seasons, the sheer ambiance of the town remains marvelous. The winters are freezing but mild, the autumns are dry for some and inspirational for most as it\'s filled with vibrant colors, while the spring and summer months are pleasant and warm, which tourists from all spheres of the earth find most welcoming.</p>\n<ul>\n<li><strong>The Recreational Opportunities</strong></li>\n</ul>\n<p>Whether indoor or outdoor, Kelowna offers fun recreational activities that you\'re sure to love one or more. What sport do you fancy doing the most? Is it snowboarding and skiing? If yes, Kelowna has you covered. You\'re also welcomed to go mountain biking and hike at the Myra Canyon Trestles. Are you a fan of golf? You can always try out the world-class championship courses such as The Harvest Golf Club, The Kelowna Golf and Country Club, and Gallagher\'s Canyon. As you can imagine, there are many more activities for you to enjoy.</p>\n<ul>\n<li><strong>The Job Market</strong></li>\n</ul>\n<p>It\'s no surprise that Kelowna was ranked #1 in the competitive job market, having an unemployment rate as low as 7.4%. It\'s not only an exciting place to live but also a great place to work. The city\'s steady growth has presented employment opportunities in health care, manufacturing, technology, construction, and agriculture. Thanks to online sources and job boards like Workopolis, Kijiji, etc., the job market is easy to navigate. Also, big businesses like UBC-Okanagan, Kelowna International Airport, Okanagan College, and Interior Health have made Kelowna\'s economy strong, positively affecting the Job Market.</p>\n<ul>\n<li><strong>The Wine</strong></li>\n</ul>\n<p>Kelowna is most famous for its vineyards and wineries. The area produces the second-largest amount of wine in Canada. If you\'re a lover of wine, then you would most certainly be a lover of Kelowna. With vineyards of approximately 10,000 acres, it accounts for over 85% of all wine made in British Columbia. Hundreds of wineries can be located in the Okanagan region, which gives you the pleasure of attending unique tours and continually trying out the latest varieties.</p>\n<p>&nbsp;</p>\n<p><strong>Frequently Asked Questions</strong></p>\n<ol>\n<li><strong> What is Kelowna renowned for?</strong></li>\n</ol>\n<p>Kelowna is renowned for its internationally recognized and award-winning vineyards and wineries, and this gives a lot of pride to the local wine industry. It\'s hard to find a wine made outside of the Okanagan at a local gathering.</p>\n<ol start=\"2\">\n<li><strong> What recreational &amp; fun activities can one partake in Kelowna?</strong></li>\n</ol>\n<p>There are several recreational and fun activities that one can partake in Kelowna. The mountains are great for hiking and mountain biking. One can go ice-skating, and threat golfing facilities are there to enjoy. Skiing, snowboarding, and other exciting sports like football are also great to partake in and enjoy.</p>\n<ol start=\"3\">\n<li><strong> What\'s the buzz about Kelowna &amp; wine?</strong></li>\n</ol>\n<p>Well, that\'s not shocking with the vast vineyards and numerous wineries the city has to offer. Kelowna is internationally recognized as the second-largest producer of wine in Canada, with award-winning vineyards and wineries.</p>\n<ol start=\"4\">\n<li><strong> How easy is it to transit in and out of Kelowna?</strong></li>\n</ol>\n<p>Taking transit in Kelowna is easier than one may think. With several routes, buses, and impressive service hours yearly, transiting in and out of Kelowna is quite convenient. Over five million trips are carried out by transit locally each year.</p>\n<ol start=\"5\">\n<li><strong> How much sunshine does Kelowna enjoy annually &amp; what is the average daily weather like?</strong></li>\n</ol>\n<p>There is a fair amount of sunshine during summer, wintertime can be freezing, and it is crisp and somewhat cloudy all through the year. For the year, the average weather typically ranges between 23°F and 85°F. It also hardly goes below 7°F or anywhere above 94°F.</p>\n<ol start=\"6\">\n<li><strong> What are the medical facilities like in and around Kelowna?</strong></li>\n</ol>\n<p>In such a refined place as Kelowna, it\'s only natural for the medical facilities to be top-notch. There are many medical offices with the best practitioners and specialists In the medical field. The largest and most comprehensive medical facility in the area is the Kelowna General Hospital.</p>\n<ol start=\"7\">\n<li><strong> What are the employment opportunities in Kelowna like?</strong></li>\n</ol>\n<p> Employment opportunities are plentiful in Kelowna due to the steady growth of the city\'s economy.</p>\n<ol start=\"8\">\n<li><strong> How is the nightlife in Kelowna?</strong></li>\n</ol>\n<p>The nightlife in Kelowna is certain to make anyone who visits the city feel like a local. There are many entertainment options that you can enjoy, like live music, theatre, comedy, karaoke, and dance clubs. The night scene is a flourishing mix of friendly neighborhood pubs, ultra-hip discos, elegant lounges, sports bars, vigorous live theatre, and fun music venues.</p>\n<ol start=\"9\">\n<li><strong> What festivities are held in Kelowna?</strong></li>\n</ol>\n<p>Many hold through the year. From Kelowna pride week to Kelowna wine country half marathon, championship tournaments, live outdoor entertainment, and many others.</p>\n<ol start=\"10\">\n<li><strong> What communities &amp; cities are close to Kelowna?</strong></li>\n</ol>\n<p>Peachland, Summerland, Penticton, Vernon, Kaleden, Lumby, Armstrong, Enderby, Oliver, Princeton, Salmon Arm, Osoyoos, Merritt, Coldwater, and Chase. All in Canada.</p>\n<ol start=\"11\">\n<li><strong> How is the traffic situation like in Kelowna on regular days?</strong></li>\n</ol>\n<p>According to a survey carried out last year by the citizens, traffic is a bit of an issue. This inconvenience is due to the increasing population in the city. New measures are being carried out to ensure an easy traffic flow, which will easily accommodate everyone (new and old).</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','home','','','2023-08-28 18:03:45','2023-08-28 18:03:45','',0,'https://capitalbookkeepingco.com/?page_id=89',0,'page','',0),(90,1,'2021-12-16 16:59:01','2021-12-16 16:59:01','','Home','','inherit','closed','closed','','89-revision-v1','','','2021-12-16 16:59:01','2021-12-16 16:59:01','',89,'https://capitalbookkeepingco.com/?p=90',0,'revision','',0),(91,1,'2021-12-16 16:59:33','2021-12-16 16:59:33','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2021-12-16 16:59:33','2021-12-16 16:59:33','',89,'https://capitalbookkeepingco.com/?p=91',0,'revision','',0),(94,1,'2021-12-16 17:13:22','2021-12-16 17:13:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.16\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" url=\"/services/kelowna-bookkeeper/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" link_option_url=\"/services/kelowna-bookkeeper/\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/kelowna-bookkeeper/\">Kelowna Bookkeeper</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" url=\"/services/payroll-and-government-remittances/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" link_option_url=\"/services/payroll-and-government-remittances/\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/payroll-and-government-remittances/\">Payroll and Government Remittances</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/kelowna-bookkeeper/\">Kelowna Bookkeeper</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/payroll-and-government-remittances/\">Payroll and Government Remittances</a></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','publish','closed','closed','','services','','','2023-08-23 19:05:21','2023-08-23 19:05:21','',0,'https://capitalbookkeepingco.com/?page_id=94',0,'page','',0),(95,1,'2021-12-16 17:09:26','2021-12-16 17:09:26','','Services','','inherit','closed','closed','','94-revision-v1','','','2021-12-16 17:09:26','2021-12-16 17:09:26','',94,'https://capitalbookkeepingco.com/?p=95',0,'revision','',0),(98,1,'2021-12-16 17:11:51','2021-12-16 17:11:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]At RHN CPA, we are happy to serve you in a variety of ways[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Businesses\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Businesses\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Businesses\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Businesses\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2021-12-16 17:11:51','2021-12-16 17:11:51','',94,'https://capitalbookkeepingco.com/?p=98',0,'revision','',0),(97,1,'2021-12-16 17:11:38','2021-12-16 17:11:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\"][et_pb_fullwidth_header _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" header_fullscreen=\"on\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]At RHN CPA, we are happy to serve you in a variety of ways[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_4,1_4,1_4,1_4\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title=\"Businesses\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title=\"Businesses\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title=\"Businesses\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title=\"Businesses\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2021-12-16 17:11:38','2021-12-16 17:11:38','',94,'https://capitalbookkeepingco.com/?p=97',0,'revision','',0),(93,1,'2021-12-16 17:08:27','2021-12-16 17:08:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"Your Title Goes Here\" button_one_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" header_fullscreen=\"on\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"2_5,3_5\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"2_5\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Who We Are</h2>\n<div>\n<p>Our Mission is to provide our clients with superior accounting and related services that satisfies their needs and improves their quality of life; and to provide employees and owners with meaningful careers that include flexibility and opportunities for success – all while being a good corporate citizen.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"3_5\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Locations</h2>\n<div>\n<p>Whether you live and work in the Lower Mainland or you are enjoying the wide open spaces of the Okanagan, RHN has your accounting needs covered. Every location is different and the needs of our clients vary. We are confident we meet the<span> </span><g class=\"gr_ gr_9 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace\" id=\"9\" data-gr-id=\"9\">ever changing</g><span> </span>needs of our clients no matter the community you call home.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_4,1_4,1_4,1_4\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Location 1\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Location 2\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Location 3\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Location 4\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">At Your Service</h2>\n<div>\n<p>RHN is a full-service accounting firm that can meet all your diverse and unique accounting needs. Our highly trained professionals will give you the quality service and expertise that you deserve.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Culture</h2>\n<div>\n<p>RHN is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2021-12-16 17:08:27','2021-12-16 17:08:27','',89,'https://capitalbookkeepingco.com/?p=93',0,'revision','',0),(103,1,'2021-12-16 17:17:16','2021-12-16 17:17:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]At RHN CPA, we are happy to serve you in a variety of ways[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Businesses\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"First Nation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Starta Corp\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Profit\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Wineries & Vinyards\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal, Trust & Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Resident\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Book Keeping\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal Real Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2021-12-16 17:17:16','2021-12-16 17:17:16','',94,'https://capitalbookkeepingco.com/?p=103',0,'revision','',0),(99,1,'2021-12-16 17:13:22','2021-12-16 17:13:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]At RHN CPA, we are happy to serve you in a variety of ways[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2021-12-16 17:13:22','2021-12-16 17:13:22','',94,'https://capitalbookkeepingco.com/?p=99',0,'revision','',0),(104,1,'2021-12-16 17:21:03','2021-12-16 17:21:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.19.2\" _module_preset=\"default\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"TAX RESOURCES\" text_orientation=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"50px\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(0,0,0,0.48) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" hover_enabled=\"0\" title_text_shadow_style=\"preset2\" text_shadow_style=\"preset2\" global_colors_info=\"{}\" title_text=\"Close,Up,View,Of,Bookkeeper,Or,Financial,Inspector,Hands,Making\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"||-130px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" text_font=\"|800|||||||\" header_font=\"|800|||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"50px\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">DROP BOX ACCESS</h1>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h4 style=\"text-align: center;\">Secure &amp; Encrypted Document Uploads and Downloads</h4>[/et_pb_text][et_pb_button button_url=\"https://app.financial-cents.com/client-portal\" button_text=\"Secure Client Portal\" button_alignment=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"checklists\" _builder_version=\"4.19.2\" _module_preset=\"default\" min_height=\"219.7px\" custom_margin=\"||-141px|||\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" text_font=\"|800|||||||\" header_font=\"|800|||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"50px\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">CHECKLISTS</h1>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h4 style=\"text-align: center;\">Want to speed up your services and reduce emails? Check out the items we\'ll need.</h4>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" min_height=\"217.4px\" custom_margin=\"|auto|-79px|auto||\" custom_padding=\"||95px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Corporate Year End Checklist (pdf)</p>[/et_pb_text][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>Personal Tax Checklist         (pdf)</p>[/et_pb_text][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Bookkeeping Checklist        (pdf)</p>[/et_pb_text][et_pb_button button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" module_id=\"templates\" _builder_version=\"4.19.2\" _module_preset=\"default\" min_height=\"845.9px\" custom_margin=\"||-185px|||\" custom_padding=\"87px|||||\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" text_font=\"|800|||||||\" header_font=\"|800|||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"50px\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">TEMPLATES</h1>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h4 style=\"text-align: center;\">Want to get the best possible return? Use these templates to ensure you maximize your deductions.</h4>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" min_height=\"217.4px\" custom_margin=\"|auto|-79px|auto||\" custom_padding=\"||95px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Small Business Excel Workbook (xlsx)</p>[/et_pb_text][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>Rental Excel Workbook       (xlsx)</p>[/et_pb_text][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Employment Expenses Workbook (xlsx)</p>[/et_pb_text][et_pb_button button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"|auto|-75px|auto||\" custom_padding=\"||95px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Home Office Deductions Workbook (xlsx)</p>[/et_pb_text][et_pb_button button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Medical Expense Excel Workbook (xlsx)</p>[/et_pb_text][et_pb_button button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Donations Expense Excel Workbook (xlsx)</p>[/et_pb_text][et_pb_button button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_padding=\"||95px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Mileage Logbook Workbook (xlsx)</p>[/et_pb_text][et_pb_button button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Payroll Timesheet Template (xlsx)</p>[/et_pb_text][et_pb_button button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Home Renovation Template (xlsx)</p>[/et_pb_text][et_pb_button button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" text_font=\"|800|||||||\" header_font=\"|800|||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"50px\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">PERSONAL TAX INFO EXPLAINED</h1>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h4 style=\"text-align: center;\">The internet can be overwhelming. Below is information to help clarify your taxes.</h4>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.2\" _module_preset=\"default\" min_height=\"217.4px\" custom_margin=\"|auto|-79px|auto||\" custom_padding=\"||95px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Rental Properties Explained (pdf)</p>[/et_pb_text][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>Work From Home &amp; Home Expenses (pdf)</p>[/et_pb_text][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.19.2\" _module_preset=\"default\" min_height=\"412.7px\" custom_margin=\"-52px|||||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" text_font=\"|800|||||||\" header_font=\"|800|||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"50px\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\">BUSINESS &amp; SELF-EMPLOYED INFO</h1>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h4 style=\"text-align: center;\">A few tax resources to get you started.</h4>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.2\" _module_preset=\"default\" min_height=\"217.4px\" custom_margin=\"|auto|-79px|auto||\" custom_padding=\"||95px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _dynamic_attributes=\"link_option_url\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" link_option_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" global_colors_info=\"{}\"]<p>Reduce Your Bookkeeping Fees (pdf)</p>[/et_pb_text][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.19.2\" _module_preset=\"default\" background_color=\"#dcdcdc\" custom_padding=\"20px|20px|20px|20px|false|false\" border_width_all=\"1px\" border_color_all=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" text_font_size=\"19px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>How to Post your Adjusting Entries (pdf)</p>[/et_pb_text][et_pb_button button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9hdHRhY2htZW50Iiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijg3NyJ9fQ==@\" button_text=\"Download\" button_alignment=\"center\" _builder_version=\"4.19.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" custom_margin=\"-22px|||||\" animation_style=\"bounce\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Resources','','publish','closed','closed','','resources','','','2023-08-24 23:54:53','2023-08-24 23:54:53','',0,'https://capitalbookkeepingco.com/?page_id=104',0,'page','',0),(105,1,'2021-12-16 17:17:49','2021-12-16 17:17:49','','Resources','','inherit','closed','closed','','104-revision-v1','','','2021-12-16 17:17:49','2021-12-16 17:17:49','',104,'https://capitalbookkeepingco.com/?p=105',0,'revision','',0),(108,1,'2021-12-16 17:21:03','2021-12-16 17:21:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Resources\" header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Tax Rates\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Tools\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Info Center\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2>Testimonials</h2>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Resources','','inherit','closed','closed','','104-revision-v1','','','2021-12-16 17:21:03','2021-12-16 17:21:03','',104,'https://capitalbookkeepingco.com/?p=108',0,'revision','',0),(107,1,'2021-12-16 17:20:16','2021-12-16 17:20:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title=\"Resources\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Tax Rates\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Personal Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Financial Tools\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Info Center\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section]','Resources','','inherit','closed','closed','','104-revision-v1','','','2021-12-16 17:20:16','2021-12-16 17:20:16','',104,'https://capitalbookkeepingco.com/?p=107',0,'revision','',0),(101,1,'2021-12-16 17:16:16','2021-12-16 17:16:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]At RHN CPA, we are happy to serve you in a variety of ways[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Businesses\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"First Nation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Starta Corp\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Profit\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Wineries & Vinyards\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal, Trust & Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Resident\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Your Title Goes Here\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2021-12-16 17:16:16','2021-12-16 17:16:16','',94,'https://capitalbookkeepingco.com/?p=101',0,'revision','',0),(109,1,'2021-12-16 17:41:32','2021-12-16 17:41:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.15.1\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/04/Pano-fr-LC-2020-scaled.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Pano fr LC 2020\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font_size=\"16px\" text_letter_spacing=\"1px\" text_line_height=\"1.6em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.15\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder/Bookkeeper\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/04/Trena-Close-use-this-photo-1-scaled.jpg\" title_text=\"Trena - Close use this photo\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.15\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager/HR/Bookkeeper\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.15\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.15\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','publish','closed','closed','','about','','','2022-04-15 23:08:28','2022-04-15 23:08:28','',0,'https://capitalbookkeepingco.com/?page_id=109',0,'page','',0),(110,1,'2021-12-16 17:22:29','2021-12-16 17:22:29','','About','','inherit','closed','closed','','109-revision-v1','','','2021-12-16 17:22:29','2021-12-16 17:22:29','',109,'https://capitalbookkeepingco.com/?p=110',0,'revision','',0),(114,1,'2021-12-16 17:28:46','2021-12-16 17:28:46','','Making agreement','Image of business partners handshaking over business objects on workplace','inherit','open','closed','','making-agreement','','','2021-12-16 17:28:46','2021-12-16 17:28:46','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/handshake-close-up-executives.jpg',0,'attachment','image/jpeg',0),(115,1,'2021-12-16 17:31:53','2021-12-16 17:31:53','','Business handshake','Portrait of elegant businessmen handshaking in conference hall','inherit','open','closed','','business-handshake','','','2021-12-16 17:31:53','2021-12-16 17:31:53','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/executives-greeting-each-other.jpg',0,'attachment','image/jpeg',0),(116,1,'2021-12-16 17:36:53','2021-12-16 17:36:53','','Businessman leader in modern office with businesspeople working','Caucasian businessman leader looking at camera in modern office with multi-ethnic businesspeople working at the background. Teamwork concept. Young man with beard wearing blue suit.','inherit','open','closed','','businessman-leader-in-modern-office-with-businesspeople-working','','','2021-12-16 17:36:53','2021-12-16 17:36:53','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/businessman-leader-modern-office-with-businesspeople-working.jpg',0,'attachment','image/jpeg',0),(118,1,'2021-12-16 18:29:26','2021-12-16 18:29:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.19.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.58) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.19.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"mailto:info@capitalbookkeepingco.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.19.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"mailto:info@capitalbookkeepingco.com\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][contact-form-7 id=\"18ee0e6\" title=\"Contact form 1\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px|true|true\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.16\" _module_preset=\"default\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px|true|true\" custom_padding=\"0px|0px|0px|0px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','publish','closed','closed','','contact-us','','','2023-08-30 00:04:11','2023-08-30 00:04:11','',0,'https://capitalbookkeepingco.com/?page_id=118',0,'page','',0),(119,1,'2021-12-16 17:42:30','2021-12-16 17:42:30','','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2021-12-16 17:42:30','2021-12-16 17:42:30','',118,'https://capitalbookkeepingco.com/?p=119',0,'revision','',0),(120,1,'2021-12-16 17:42:45','2021-12-16 17:42:45','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2021-12-16 17:42:45','2021-12-16 17:42:45','',118,'https://capitalbookkeepingco.com/?p=120',0,'revision','',0),(121,1,'2021-12-16 17:45:32','2021-12-16 17:45:32','','Accountant calculating profit with financial analysis graphs','Accountant calculating profit with financial analysis graphs. Notebook, glasses and calculator lying on desk. Accountancy concept. Cropped view.','inherit','open','closed','','accountant-calculating-profit-with-financial-analysis-graphs','','','2021-12-16 17:45:32','2021-12-16 17:45:32','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs.jpg',0,'attachment','image/jpeg',0),(144,1,'2021-12-16 18:53:54','2021-12-16 18:53:54','','workplace-team-cooperation-businesswoman-laptop-office','Business concept. Business people discussing the charts and graphs showing the results of their successful teamwork.','inherit','open','closed','','workplace-team-cooperation-businesswoman-laptop-office','','','2021-12-16 18:53:54','2021-12-16 18:53:54','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office.jpg',0,'attachment','image/jpeg',0),(141,1,'2021-12-16 18:50:54','2021-12-16 18:50:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title=\"Blog\" sticky_enabled=\"0\" title_text=\"Business finance man calculating budget numbers, Invoices and fi\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-scaled.jpg\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"2_3,1_3\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_blog _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" show_more=\"on\" show_author=\"off\" show_date=\"off\" fullwidth=\"off\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_sidebar _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]','Blog','','inherit','closed','closed','','137-revision-v1','','','2021-12-16 18:50:54','2021-12-16 18:50:54','',137,'https://capitalbookkeepingco.com/?p=141',0,'revision','',0),(149,1,'2021-12-16 19:17:28','2021-12-16 19:17:28','','Accounting notes','Photo of human hands holding pencil and ticking data in documents','inherit','open','closed','','accounting-notes','','','2021-12-16 19:17:28','2021-12-16 19:17:28','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/close-up-busy-businesswoman.jpg',0,'attachment','image/jpeg',0),(428,1,'2022-01-22 20:52:54','2022-01-22 20:52:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Let Us Take A look\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" background_color_gradient_end_position=\"55%\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" custom_padding=\"70px||70px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" sticky_enabled=\"0\" background_enable_image=\"off\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"#d3d3d3\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 20:52:54','2022-01-22 20:52:54','',109,'https://capitalbookkeepingco.com/?p=428',0,'revision','',0),(421,1,'2022-01-22 20:43:33','2022-01-22 20:43:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"About\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/close-up-busy-businesswoman-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"100px||100px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Leadership</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#c6c6c6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"200px||200px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shopping and budgeting financial concept\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Culture</h3>\n<div>\n<p>Our organizational philosophy includes The Four Agreements, which we take very seriously and to heart.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 20:43:33','2022-01-22 20:43:33','',109,'https://capitalbookkeepingco.com/?p=421',0,'revision','',0),(419,1,'2022-01-22 20:39:35','2022-01-22 20:39:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"About\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/close-up-busy-businesswoman-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"100px||100px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Leadership</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" custom_padding=\"200px||200px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Culture</h3>\n<div>\n<p>Our organizational philosophy includes The Four Agreements, which we take very seriously and to heart.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/executives-greeting-each-other-scaled.jpg\" custom_padding=\"200px||200px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Careers</h3>\n<div>\n<p>Our commitment to our employees’ personal and professional growth is evident. Just ask some of our managers, directors and shareholders who started out as RHN co-op students, they’ll be more than happy to tell you why they are here to stay.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e8e8e8\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 20:39:35','2022-01-22 20:39:35','',109,'https://capitalbookkeepingco.com/?p=419',0,'revision','',0),(415,1,'2022-01-22 19:47:33','2022-01-22 19:47:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"About\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/close-up-busy-businesswoman-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"150px||150px||true|false\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/businessman-leader-modern-office-with-businesspeople-working-scaled.jpg\" custom_padding=\"200px||200px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Leadership</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.7\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_3_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_4,1_4,1_4,1_4\"][et_pb_column _builder_version=\"4.14.7\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Trena Smith\" hover_enabled=\"0\" sticky_enabled=\"0\" header_text_align=\"center\" header_font=\"|700|||||||\"][/et_pb_team_member][/et_pb_column][et_pb_column _builder_version=\"4.14.7\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Julie\" hover_enabled=\"0\" sticky_enabled=\"0\" header_text_align=\"center\" header_font=\"|700|||||||\"][/et_pb_team_member][/et_pb_column][et_pb_column _builder_version=\"4.14.7\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Cathie\" hover_enabled=\"0\" sticky_enabled=\"0\" header_text_align=\"center\" header_font=\"|700|||||||\"][/et_pb_team_member][/et_pb_column][et_pb_column _builder_version=\"4.14.7\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Sara\" hover_enabled=\"0\" sticky_enabled=\"0\" header_text_align=\"center\" header_font=\"|700|||||||\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" custom_padding=\"200px||200px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Culture</h3>\n<div>\n<p>Our organizational philosophy includes The Four Agreements, which we take very seriously and to heart.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/executives-greeting-each-other-scaled.jpg\" custom_padding=\"200px||200px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Careers</h3>\n<div>\n<p>Our commitment to our employees’ personal and professional growth is evident. Just ask some of our managers, directors and shareholders who started out as RHN co-op students, they’ll be more than happy to tell you why they are here to stay.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e8e8e8\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.14.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 19:47:33','2022-01-22 19:47:33','',109,'https://capitalbookkeepingco.com/?p=415',0,'revision','',0),(150,1,'2021-12-16 19:21:03','2021-12-16 19:21:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"About\" header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Accounting notes\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/close-up-busy-businesswoman-scaled.jpg\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/businessman-leader-modern-office-with-businesspeople-working-scaled.jpg\" custom_padding=\"200px||200px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Leadership</h2>\n<div>\n<p>RHN is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" custom_padding=\"200px||200px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Culture</h3>\n<div>\n<p>Our organizational philosophy includes The Four Agreements (from Don Miguel Ruiz’s Book, The Four Agreements) which we take very seriously and to heart.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/executives-greeting-each-other-scaled.jpg\" custom_padding=\"200px||200px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Careers</h3>\n<div>\n<p>Our commitment to our employees’ personal and professional growth is evident. Just ask some of our managers, directors and shareholders who started out as RHN co-op students, they’ll be more than happy to tell you why they are here to stay.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Locations</h3>\n<div>\n<p>Whether you live and work in the Lower Mainland or you are enjoying the wide open spaces of the Okanagan, RHN has your accounting needs covered. Every location is different and the needs of our clients vary. We are confident we meet the<span> </span><g class=\"gr_ gr_9 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace\" id=\"9\" data-gr-id=\"9\">ever changing</g><span> </span>needs of our clients no matter the community you call home.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Location 1\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Location 2\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Location 3\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Location 4\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e8e8e8\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2021-12-16 19:21:03','2021-12-16 19:21:03','',109,'https://capitalbookkeepingco.com/?p=150',0,'revision','',0),(117,1,'2021-12-16 17:41:32','2021-12-16 17:41:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title=\"About\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"200px||200px||true|false\" sticky_enabled=\"0\" title_text=\"Businessman leader in modern office with businesspeople working\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/businessman-leader-modern-office-with-businesspeople-working-scaled.jpg\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Leadership</h2>\n<div>\n<p>RHN is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" title_text=\"Accountant-Image-36\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-36.jpg\" custom_padding=\"200px||200px||true|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_layout=\"dark\"]<h3 class=\"et_pb_module_header\">Culture</h3>\n<div>\n<p>Our organizational philosophy includes The Four Agreements (from Don Miguel Ruiz’s Book, The Four Agreements) which we take very seriously and to heart.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" title_text=\"Business handshake\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/executives-greeting-each-other-scaled.jpg\" custom_padding=\"200px||200px||true|false\" hover_enabled=\"0\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_end_position=\"70%\" background_color_gradient_start_position=\"40%\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3 class=\"et_pb_module_header\">Careers</h3>\n<div>\n<p>Our commitment to our employees’ personal and professional growth is evident. Just ask some of our managers, directors and shareholders who started out as RHN co-op students, they’ll be more than happy to tell you why they are here to stay.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3 class=\"et_pb_module_header\">Locations</h3>\n<div>\n<p>Whether you live and work in the Lower Mainland or you are enjoying the wide open spaces of the Okanagan, RHN has your accounting needs covered. Every location is different and the needs of our clients vary. We are confident we meet the<span> </span><g class=\"gr_ gr_9 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace\" id=\"9\" data-gr-id=\"9\">ever changing</g><span> </span>needs of our clients no matter the community you call home.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_4,1_4,1_4,1_4\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Location 1\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Location 2\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Location 3\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Location 4\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e8e8e8\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2021-12-16 17:41:32','2021-12-16 17:41:32','',109,'https://capitalbookkeepingco.com/?p=117',0,'revision','',0),(112,1,'2021-12-16 17:22:53','2021-12-16 17:22:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]At RHN CPA, we are happy to serve you in a variety of ways[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Businesses\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"First Nation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Starta Corp\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Non Profit\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Wineries & Vinyards\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Personal, Trust & Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Non Resident\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Book Keeping\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Personal Real Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2021-12-16 17:22:53','2021-12-16 17:22:53','',109,'https://capitalbookkeepingco.com/?p=112',0,'revision','',0),(136,1,'2021-12-16 19:21:21','2021-12-16 18:32:04',' ','','','publish','closed','closed','','136','','','2021-12-16 19:21:21','2021-12-16 19:21:21','',0,'https://capitalbookkeepingco.com/?p=136',2,'nav_menu_item','',0),(137,1,'2021-12-16 18:50:54','2021-12-16 18:50:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Blog\" header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" use_background_color_gradient=\"on\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.55)\" background_color_gradient_end=\"rgba(0,0,0,0.55)\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" sticky_enabled=\"0\"][et_pb_column type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_sidebar _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" show_border=\"off\" sticky_enabled=\"0\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]','Blog','','publish','closed','closed','','blog','','','2021-12-16 18:52:52','2021-12-16 18:52:52','',0,'https://capitalbookkeepingco.com/?page_id=137',0,'page','',0),(138,1,'2021-12-16 18:47:44','2021-12-16 18:47:44','','Blog','','inherit','closed','closed','','137-revision-v1','','','2021-12-16 18:47:44','2021-12-16 18:47:44','',137,'https://capitalbookkeepingco.com/?p=138',0,'revision','',0),(143,1,'2021-12-16 18:52:52','2021-12-16 18:52:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Blog\" header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" use_background_color_gradient=\"on\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.55)\" background_color_gradient_end=\"rgba(0,0,0,0.55)\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" sticky_enabled=\"0\"][et_pb_column type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_sidebar _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" show_border=\"off\" sticky_enabled=\"0\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]','Blog','','inherit','closed','closed','','137-revision-v1','','','2021-12-16 18:52:52','2021-12-16 18:52:52','',137,'https://capitalbookkeepingco.com/?p=143',0,'revision','',0),(125,1,'2021-12-16 18:22:04','2021-12-16 18:22:04','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2021-12-16 18:22:04','2021-12-16 18:22:04','',5,'https://capitalbookkeepingco.com/?p=125',0,'revision','',0),(256,1,'2022-01-10 18:14:19','2022-01-10 18:14:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Request For Proposal</h3>\n<div>\n<p>Click the button below to start a request for proposal. If your request relates to a Strata Corporation specifically, please<span> </span><a href=\"#\">click here</a>.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5%|5%|3%|5%|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Capital Bookkepping Serving the community for over 50 years.</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>Proudly serving the Capital Bookkeeping community, we offer a wide range of personal and professional accounting knowledge, business advisory and audit-related services to a broad client base operating locally and in a variety of industries, including businesses, Strata Corporations, Not-for-Profit organizations, and First Nations.</p>\n<p>We are closely integrated with our offices in Vancouver, Kelowna and Osoyoos, thereby allowing for coordinated activity across locations, as well as the ability to draw on the extensive technical depth and accounting abilities of others in the firm, to effectively provide accounting and business advisory services to meet our diverse clients’ needs. For your convenience, clients can access their financial documents 24/7 through our secure online portal.</p>\n</div>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2022-01-10 18:14:19','2022-01-10 18:14:19','',118,'https://capitalbookkeepingco.com/?p=256',0,'revision','',0),(126,1,'2021-12-16 18:22:18','2021-12-16 18:22:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Request For Proposal</h3>\n<div>\n<p>Click the button below to start a request for proposal. If your request relates to a Strata Corporation specifically, please<span> </span><a href=\"#\">click here</a>.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e2e2e2\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Our Locations</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5%|5%|3%|5%|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Capital Bookkepping Serving the community for over 50 years.</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>Proudly serving the Capital Bookkeeping community, we offer a wide range of personal and professional accounting knowledge, business advisory and audit-related services to a broad client base operating locally and in a variety of industries, including businesses, Strata Corporations, Not-for-Profit organizations, and First Nations.</p>\n<p>We are closely integrated with our offices in Vancouver, Kelowna and Osoyoos, thereby allowing for coordinated activity across locations, as well as the ability to draw on the extensive technical depth and accounting abilities of others in the firm, to effectively provide accounting and business advisory services to meet our diverse clients’ needs. For your convenience, clients can access their financial documents 24/7 through our secure online portal.</p>\n</div>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Directors in attendance</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_orientation=\"center\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_orientation=\"center\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_orientation=\"center\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_orientation=\"center\" sticky_enabled=\"0\" module_class=\"person_module_5\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2021-12-16 18:22:18','2021-12-16 18:22:18','',118,'https://capitalbookkeepingco.com/?p=126',0,'revision','',0),(127,1,'2021-12-16 18:25:05','2021-12-16 18:25:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Request For Proposal</h3>\n<div>\n<p>Click the button below to start a request for proposal. If your request relates to a Strata Corporation specifically, please<span> </span><a href=\"#\">click here</a>.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e2e2e2\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Our Locations</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5%|5%|3%|5%|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Capital Bookkepping Serving the community for over 50 years.</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>Proudly serving the Capital Bookkeeping community, we offer a wide range of personal and professional accounting knowledge, business advisory and audit-related services to a broad client base operating locally and in a variety of industries, including businesses, Strata Corporations, Not-for-Profit organizations, and First Nations.</p>\n<p>We are closely integrated with our offices in Vancouver, Kelowna and Osoyoos, thereby allowing for coordinated activity across locations, as well as the ability to draw on the extensive technical depth and accounting abilities of others in the firm, to effectively provide accounting and business advisory services to meet our diverse clients’ needs. For your convenience, clients can access their financial documents 24/7 through our secure online portal.</p>\n</div>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Directors in attendance</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" background_layout=\"dark\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" background_layout=\"dark\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" background_layout=\"dark\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" background_layout=\"dark\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2021-12-16 18:25:05','2021-12-16 18:25:05','',118,'https://capitalbookkeepingco.com/?p=127',0,'revision','',0),(436,1,'2022-01-22 21:07:20','2022-01-22 21:07:20','','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-22 21:07:20','2022-01-22 21:07:20','',5,'https://capitalbookkeepingco.com/?p=436',0,'revision','',0),(128,1,'2021-12-16 18:25:28','2021-12-16 18:25:28','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 94px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2021-12-16 18:25:28','2021-12-16 18:25:28','',5,'https://capitalbookkeepingco.com/?p=128',0,'revision','',0),(211,1,'2021-12-28 20:05:38','2021-12-28 20:05:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Request For Proposal</h3>\n<div>\n<p>Click the button below to start a request for proposal. If your request relates to a Strata Corporation specifically, please<span> </span><a href=\"#\">click here</a>.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5%|5%|3%|5%|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Capital Bookkepping Serving the community for over 50 years.</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>Proudly serving the Capital Bookkeeping community, we offer a wide range of personal and professional accounting knowledge, business advisory and audit-related services to a broad client base operating locally and in a variety of industries, including businesses, Strata Corporations, Not-for-Profit organizations, and First Nations.</p>\n<p>We are closely integrated with our offices in Vancouver, Kelowna and Osoyoos, thereby allowing for coordinated activity across locations, as well as the ability to draw on the extensive technical depth and accounting abilities of others in the firm, to effectively provide accounting and business advisory services to meet our diverse clients’ needs. For your convenience, clients can access their financial documents 24/7 through our secure online portal.</p>\n</div>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Directors in attendance</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e5e5e5\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2021-12-28 20:05:38','2021-12-28 20:05:38','',118,'https://capitalbookkeepingco.com/?p=211',0,'revision','',0),(129,1,'2021-12-16 18:29:26','2021-12-16 18:29:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Request For Proposal</h3>\n<div>\n<p>Click the button below to start a request for proposal. If your request relates to a Strata Corporation specifically, please<span> </span><a href=\"#\">click here</a>.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e2e2e2\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Our Locations</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_text=\"Location 1\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5%|5%|3%|5%|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Capital Bookkepping Serving the community for over 50 years.</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>Proudly serving the Capital Bookkeeping community, we offer a wide range of personal and professional accounting knowledge, business advisory and audit-related services to a broad client base operating locally and in a variety of industries, including businesses, Strata Corporations, Not-for-Profit organizations, and First Nations.</p>\n<p>We are closely integrated with our offices in Vancouver, Kelowna and Osoyoos, thereby allowing for coordinated activity across locations, as well as the ability to draw on the extensive technical depth and accounting abilities of others in the firm, to effectively provide accounting and business advisory services to meet our diverse clients’ needs. For your convenience, clients can access their financial documents 24/7 through our secure online portal.</p>\n</div>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Directors in attendance</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" background_layout=\"dark\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Name Goes Here\" position=\"Position\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" module_class=\"person_module_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e5e5e5\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2021-12-16 18:29:26','2021-12-16 18:29:26','',118,'https://capitalbookkeepingco.com/?p=129',0,'revision','',0),(130,1,'2021-12-16 18:30:23','2021-12-16 18:30:23','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2021-12-16 18:30:23','2021-12-16 18:30:23','',5,'https://capitalbookkeepingco.com/?p=130',0,'revision','',0),(373,1,'2022-02-05 15:44:24','2022-01-16 15:00:17',' ','','','publish','closed','closed','','373','','','2022-02-05 15:44:24','2022-02-05 15:44:24','',0,'https://capitalbookkeepingco.com/?p=373',2,'nav_menu_item','',0),(132,1,'2021-12-16 19:21:21','2021-12-16 18:32:04',' ','','','publish','closed','closed','','132','','','2021-12-16 19:21:21','2021-12-16 19:21:21','',0,'https://capitalbookkeepingco.com/?p=132',5,'nav_menu_item','',0),(133,1,'2021-12-16 19:21:21','2021-12-16 18:32:04',' ','','','publish','closed','closed','','133','','','2021-12-16 19:21:21','2021-12-16 19:21:21','',0,'https://capitalbookkeepingco.com/?p=133',6,'nav_menu_item','',0),(134,1,'2021-12-16 19:21:21','2021-12-16 18:32:04',' ','','','publish','closed','closed','','134','','','2021-12-16 19:21:21','2021-12-16 19:21:21','',0,'https://capitalbookkeepingco.com/?p=134',1,'nav_menu_item','',0),(135,1,'2021-12-16 19:21:21','2021-12-16 18:32:04',' ','','','publish','closed','closed','','135','','','2021-12-16 19:21:21','2021-12-16 19:21:21','',0,'https://capitalbookkeepingco.com/?p=135',3,'nav_menu_item','',0),(123,1,'2021-12-16 18:06:59','2021-12-16 18:06:59','#main-header{border-bottom:1px solid rgba(255,255,255,.3)}#main-header.et-fixed-header{background:0 0}.et_header_style_left .logo_container{border-right:1px solid rgba(255,255,255,.3);padding-right:50px;width:auto}.et_header_style_left #et-top-navigation{position:relative;margin-right:20px}#et-top-navigation:after{position:absolute;content:\"\";width:1px;height:100%;right:67px;top:0;background:rgba(255,255,255,.3)}#top-menu-nav{margin-right:50px}#top-menu li{margin-bottom:0;padding-right:15px}#top-menu li a{padding:0 10px}#et-top-navigation #top-menu li a{font-weight:600}#top-menu .current-menu-item a::before,#top-menu .current_page_item a::before{content:\"\";left:0;position:absolute;width:100%;z-index:2}#top-menu>li>a:before{content:\"\";position:absolute;left:50%;bottom:50%;background:linear-gradient(to right,#2da0e3,#4dbeec,#2da0e3);height:2px;transition:all .2s ease-in-out;width:0}#top-menu li a:hover:before{left:0;width:100%}#top-menu>li:last-child{padding-right:0}#top-menu>li:last-child a:before{display:none}#top-menu-nav>ul>li:last-child>a:hover{opacity:1}#main-content:before{background:linear-gradient(to bottom,rgba(0,0,0,.6) 20%,transparent);content:\'\';height:220px;left:0;position:absolute;top:0;width:100%;z-index:3}.et-fb #main-content:before{display:none}@media all and (max-width:479px){#main-content:before{height:150px}}header.et-fixed-header#main-header{border:none;box-shadow:0 4px 8px rgba(0,0,0,.15)!important}#main-header.et-fixed-header .et_search_form_container input{color:#00427a!important}.et-fixed-header #logo{content:url(../../assets/img/rhn-cpa-logo.png)}.et-fixed-header #top-menu-nav{margin-right:17px}.et-fixed-header #top-menu>li>a:before{bottom:0;height:3px}span.et_close_search_field{margin-right:15px}.et_header_style_left form.et-search-form{background:#fff!important;max-width:100%!important;right:0;width:100%!important}.et_header_style_left form.et-search-form input{max-width:calc(1280px + 12%);padding:0 6%;right:50%;transform:translateX(50%);width:100%}#main-header span.et_close_search_field:after{color:#00427a!important}#main-header .et_search_form_container input,#main-header .et_search_form_container input::placeholder{font-size:45px!important;letter-spacing:0;text-transform:initial;font-weight:200}#main-header .et_search_form_container input{caret-color:#2da0e3;color:#00427a}#main-header .et_search_form_container input::placeholder{color:#00427a!important}.et_mobile_menu li a{font-size:16px;font-weight:400}#main-header .et_mobile_menu .menu-item-has-children>a{background-color:transparent;font-weight:400;position:relative}#main-header .et_mobile_menu .menu-item-has-children>a:after{font-family:ETmodules;font-weight:400;font-variant:normal;position:absolute;speak:none;text-align:center;text-transform:none;-webkit-font-smoothing:antialiased}#main-header .et_mobile_menu .menu-item-has-children>a:after{content:\'\\4c\';font-size:16px;right:10px;top:13px}#main-header .et_mobile_menu .menu-item-has-children.visible>a:after{content:\'\\4d\'}#main-header .et_mobile_menu ul.sub-menu{display:none!important;transition:all 1.5s ease-in-out;visibility:hidden!important}#main-header .et_mobile_menu .visible>ul.sub-menu{display:block!important;visibility:visible!important}.home-slider .et_pb_slide{transition:padding .3s ease-in-out}@media (max-width:980px){header#main-header{background-color:transparent}#main-header .container{width:100%}.et_header_style_left .logo_container{padding:0 25px}.et_header_style_left #logo{max-width:100%}.et_header_style_left form.et-search-form input{padding:0 6%}.et_header_style_left #et-top-navigation,span.et_close_search_field{margin-right:15px}span.et_close_search_field{width:32px}#main-header #et_search_icon:before,#main-header .mobile_menu_bar:before{color:#fff!important}#main-header span.et_close_search_field:after{color:#00427a}#main-header .et_search_form_container input{caret-color:#2da0e3}#main-header .et_search_form_container input,#main-header .et_search_form_container input::placeholder{font-size:24px!important;font-weight:300}.et_mobile_menu li ul li a,.et_mobile_menu li:last-child a{border:none}.et_mobile_menu li a:last-child span{display:block;text-align:center}.et_mobile_menu li:last-child a:hover{background-color:transparent;opacity:1}.et_mobile_menu li ul li:last-child a:hover{background-color:rgba(0,0,0,.03);opacity:.7}}@media (max-width:480px){.et_header_style_left .logo_container{border:0;padding-left:6%;padding-right:0;z-index:1}.et_header_style_left #logo{max-width:75%;padding-right:0}.et_header_style_left #et-top-navigation{margin:0 6%;width:88%}#et-top-navigation:after{display:none}#et_top_search{float:right;margin-right:50px}}@media (max-width:980px){.submenu-fullwidth .sub-menu .sub-menu-columns.column-1{display:none}}@media (min-width:981px){#top-menu .submenu-fullwidth .sub-menu{background:url(../../assets/img/rhn-cpa-menu.jpg),#fff;background-size:contain;background-repeat:no-repeat;border:none;position:fixed!important;display:flex;flex-wrap:wrap;align-items:center;height:400px;left:0;padding:50px 0;transition-delay:.2s;width:100%}#top-menu .submenu-fullwidth .sub-menu .sub-menu-columns .li-wrapper{flex:0 1 50%}#top-menu .submenu-fullwidth .sub-menu .sub-menu-columns.column-1{flex:0 1 50%;max-width:50%;order:1;padding-right:30px;padding-left:calc(25% + 30px)}#top-menu .submenu-fullwidth .sub-menu .sub-menu-columns.column-1 h2{color:#00427a;font-size:50px;font-weight:300}#top-menu .submenu-fullwidth .sub-menu .sub-menu-columns.column-1 p{font-size:16px;font-weight:400;line-height:1.6em;margin-bottom:20px}#top-menu .submenu-fullwidth .sub-menu .sub-menu-columns.column-1 .main-button{align-items:center;background-image:url(../../assets/img/rhn-btn-bg.jpg);background-color:#2da0e3;background-size:contain;border-radius:2px;box-shadow:0 30px 40px rgba(0,0,0,.2);color:#fff!important;display:flex;font-size:16px;height:60px;justify-content:center;letter-spacing:0;text-transform:capitalize;transition:all .2s ease-in-out;width:250px}#top-menu .submenu-fullwidth .sub-menu .sub-menu-columns.column-1 .main-button:hover{background-image:url(../../assets/img/rhn-btn-hover.jpg)}#top-menu .submenu-fullwidth .sub-menu .sub-menu-columns.column-2{display:flex;flex-wrap:wrap;flex:0 1 50%;max-width:50%;order:2;padding-right:30px}#top-menu .submenu-fullwidth .sub-menu .sub-menu-columns.column-2 .li-wrapper{flex:0 1 50%}#et-top-navigation #top-menu .submenu-fullwidth .sub-menu li{padding:2px 0;width:100%}#et-top-navigation #top-menu .submenu-fullwidth .sub-menu li a{font-size:30px;font-weight:200;letter-spacing:0;line-height:35px;text-transform:capitalize;width:auto}}@media all and (min-width:981px) and (max-width:1288px){#et-top-navigation #top-menu li a{letter-spacing:1px;padding-left:5px!important;padding-right:5px!important;font-size:11px}#et-top-navigation #top-menu li a .main-button{font-size:11px;padding-left:15px;padding-right:15px}#top-menu li{padding-right:7px}#top-menu-nav{margin-right:30px}#et-secondary-nav .menu-item-has-children>a:first-child,#et-top-navigation #top-menu li.menu-item-has-children>a:first-child{padding-right:20px!important}}.archive #main-content:before,.board-member #main-content:before,.product-template-default #main-content:before,.request-proposal #main-content:before,.search-results #main-content:before,.single-post #main-content:before,.woocommerce-cart #main-content:before,.woocommerce-checkout #main-content:before{display:none}.archive #main-header,.product-template-default #main-header,.request-proposal #main-header,.search-results #main-header,.single-post #main-header,.woocommerce-cart #main-header,.woocommerce-checkout #main-header{background:#fff;border-bottom:1px solid #e2e2e2;box-shadow:0 4px 8px rgba(0,0,0,.15)!important}.archive #main-header .logo_container,.product-template-default #main-header .logo_container,.request-proposal #main-header .logo_container,.search-results #main-header .logo_container,.single-post #main-header .logo_container,.woocommerce-cart #main-header .logo_container,.woocommerce-checkout #main-header .logo_container{border-right:1px solid #e2e2e2}.archive #main-header #logo,.product-template-default #main-header #logo,.request-proposal #main-header #logo,.search-results #main-header #logo,.single-post #main-header #logo,.woocommerce-cart #main-header #logo,.woocommerce-checkout #main-header #logo{content:url(../img/rhn-cpa-logo.png)}.archive #main-header #et-top-navigation #top-menu li a,.archive #main-header #et_search_icon:before,.product-template-default #main-header #et-top-navigation #top-menu li a,.product-template-default #main-header #et_search_icon:before,.request-proposal #main-header #et-top-navigation #top-menu li a,.request-proposal #main-header #et_search_icon:before,.search-results #main-header #et-top-navigation #top-menu li a,.search-results #main-header #et_search_icon:before,.single-post #main-header #et-top-navigation #top-menu li a,.single-post #main-header #et_search_icon:before,.woocommerce-cart #main-header #et-top-navigation #top-menu li a,.woocommerce-cart #main-header #et_search_icon:before,.woocommerce-checkout #main-header #et-top-navigation #top-menu li a,.woocommerce-checkout #main-header #et_search_icon:before{color:#00427a}.archive #et-top-navigation:after,.product-template-default #et-top-navigation:after,.request-proposal #et-top-navigation:after,.search-results #et-top-navigation:after,.single-post #et-top-navigation:after,.woocommerce-cart #et-top-navigation:after,.woocommerce-checkout #et-top-navigation:after{background:#e2e2e2}@media (max-width:980px){.archive #main-header .logo_container,.product-template-default #main-header .logo_container,.request-proposal #main-header .logo_container,.search-results #main-header .logo_container,.single-post #main-header .logo_container,.woocommerce-cart #main-header .logo_container,.woocommerce-checkout #main-header .logo_container{border-right:none;z-index:1}.archive #main-header #et_search_icon:before,.archive #main-header .mobile_menu_bar:before,.product-template-default #main-header #et_search_icon:before,.product-template-default #main-header .mobile_menu_bar:before,.request-proposal #main-header #et_search_icon:before,.request-proposal #main-header .mobile_menu_bar:before,.search-results #main-header #et_search_icon:before,.search-results #main-header .mobile_menu_bar:before,.single-post #main-header #et_search_icon:before,.single-post #main-header .mobile_menu_bar:before,.woocommerce-cart #main-header #et_search_icon:before,.woocommerce-cart #main-header .mobile_menu_bar:before,.woocommerce-checkout #main-header #et_search_icon:before,.woocommerce-checkout #main-header .mobile_menu_bar:before{color:#00427a!important}}#et-top-navigation .et-cart-info{display:none}a.footer-social{font-size:80px;color:#fff;transition:all .2s ease-in-out}a.footer-social:hover{color:#00427a}a.footer-social .fa-twitter{margin-left:30px;margin-right:20px}@media (max-width:480px){a.footer-social{font-size:60px}}#main-footer{overflow:hidden;position:relative}#main-footer:before{content:\"\";background-image:linear-gradient(#002c54,#fff);position:absolute;top:0;left:0;width:100%;height:100%;opacity:.07}#main-footer .container{max-width:1280px;width:100%}#main-footer .container:after{content:url(../../assets/img/rhn-cpa-footer-compass.png);position:absolute;bottom:3%;left:0;transform:scale(1.2)}#main-footer #footer-widgets .footer-widget .fwidget{color:#00427a;margin-bottom:20px;vertical-align:top}.footer-widget:nth-child(2) .fwidget:first-child{display:inline-block;padding-right:20px;width:65%}.footer-widget:nth-child(2) .fwidget:nth-child(2){display:inline-block;width:34%}.footer-widget:nth-child(2) .et_pb_widget{float:none}#footer-widgets .footer-widget .widget_nav_menu{width:100%}#footer-widgets .footer-widget h4{color:#00427a;font-size:25px;margin-bottom:10px}#footer-widgets .footer-widget ul li{font-size:16px;padding:2px 0}#footer-widgets .footer-widget ul li a:hover{color:#00427a;opacity:.7}#footer-widgets .footer-widget .menu{display:flex;flex-wrap:wrap;justify-content:space-between;margin:20px 0}#footer-widgets .footer-widget .menu li{display:inline-block;margin:20px 0;padding:0 10px;position:relative}#footer-widgets .footer-widget .menu li:first-child{padding-left:0}#footer-widgets .footer-widget .menu li:last-child{padding-right:0}#footer-widgets .footer-widget .menu .sub-menu{opacity:0;position:absolute;top:30px;transition:all .2s ease-in-out;visibility:hidden;width:240px}#footer-widgets .footer-widget .menu li:hover .sub-menu{background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.1);-webkit-box-shadow:0 2px 5px rgba(0,0,0,.1);-moz-box-shadow:0 2px 5px rgba(0,0,0,.1);border-top:3px solid #2ea3f2;opacity:1;padding:20px 0;visibility:visible;width:240px;z-index:9999}#footer-widgets .footer-widget .menu .sub-menu li{display:block;margin:0;padding:0 20px}#footer-widgets .footer-widget .menu .sub-menu li a{display:block;padding:6px 20px;transition:all .2s ease-in-out}#footer-widgets .footer-widget .menu .sub-menu li a:hover{background:rgba(0,0,0,.03);opacity:.7}#footer-widgets .footer-widget ul li:before{content:none}#footer-widgets .footer-widget ul li a{color:#00427a}#footer-widgets .footer-widget .menu li a{font-size:14px;font-weight:600;letter-spacing:1px;text-transform:uppercase}#footer-widgets .footer-widget .menu li a:hover{color:#00427a;opacity:.7}.footer-bottom{border-top:1px solid #e2e6e7;display:flex;align-items:center;justify-content:space-between;padding-top:38px}.footer-bottom .icons{display:flex}.footer-bottom p{color:#00427a;font-size:12px;letter-spacing:1px;padding-right:10px;text-transform:uppercase;z-index:2}.footer-bottom i{background:#c4ced5;cursor:pointer;font-size:25px;height:60px;margin-right:10px;padding:16px 15px 14px 15px;text-align:center;transition:all .2s ease-in-out;width:60px}.footer-bottom i:hover{background:#abb5bc}.footer-bottom .et_pb_scroll_top.et-pb-icon{background:#dee7ef;cursor:pointer;border-radius:0;font-weight:800;padding:14px 15px 16px 15px;position:static;transition:all .2s ease-in-out}.footer-bottom .et_pb_scroll_top.et-pb-icon:hover{background:#d1dbe5}#footer-bottom{display:none}.footer-widget .widget_custom_html.fwidget:last-child{margin-bottom:40px!important}.footer-flash-post{background-color:#00427a;bottom:0;color:#fff;font-weight:600;left:0;position:fixed;text-align:center;width:100%;z-index:999999}.footer-flash-post .flash-post-wrapper{margin:0 auto;max-width:1280px;padding:20px 40px;position:relative}.footer-flash-post .flash-post-wrapper a{color:#4dbeec;font-size:14px;font-weight:600;letter-spacing:1px;margin-left:20px;text-transform:uppercase}.footer-flash-post .flash-post-wrapper a i{margin-left:0;margin-right:5px;transition:.2s all ease}.footer-flash-post .flash-post-wrapper a:hover i{margin-left:5px;margin-right:0}.footer-flash-post .flash-post-wrapper .btn_close{cursor:pointer;padding:0 10px;position:absolute;right:-10px;top:50%;transform:translateY(-50%)}.footer-flash-post .flash-post-wrapper .btn_close i{color:#fff;font-size:25px;line-height:1.5em;text-shadow:0 2px 20px rgba(0,0,0,.2);transition:.2s all ease}.footer-flash-post .flash-post-wrapper .btn_close:hover i{color:rgba(255,255,255,.7)}@media (max-width:480px){#et-main-area #main-footer .container{padding:0 30px 150px 30px}#main-footer .container:after{bottom:-5%;left:50%;transform:translateX(-50%) scale(.7)}#footer-widgets .footer-widget .menu{justify-content:center}#footer-widgets .footer-widget .menu li{margin-bottom:0;padding:0 20px}#footer-widgets .footer-widget .menu li:first-child{padding-left:20px}#footer-widgets .footer-widget .menu li:last-child{padding-right:20px}.footer-widget:nth-child(2) .fwidget:first-child{display:block;padding-right:0;width:100%}.footer-widget:nth-child(2) .fwidget:nth-child(2){display:block;width:100%}.footer-widget:nth-child(2) .et_pb_widget{float:none}.footer-flash-post .flash-post-wrapper{padding:20px 30px}.footer-flash-post .flash-post-wrapper span{display:block;margin-bottom:5px}.footer-flash-post .flash-post-wrapper a{margin-left:0;padding:10px 20px}.footer-flash-post .flash-post-wrapper .btn_close{right:0;top:-20px}.footer-flash-post .flash-post-wrapper .btn_close i{color:#00427a}}@media (min-width:481px) and (max-width:768px){#main-footer #footer-widgets .footer-widget:first-child{margin-bottom:40px!important}#main-footer #footer-widgets .footer-widget:first-child .fwidget{padding-bottom:40px;border-bottom:1px solid #e2e6e7;width:100%}#main-footer #footer-widgets .footer-widget:first-child .fwidget img{max-width:312px!important;width:100%}#main-footer .container:after{content:\'\'}}@media (min-width:981px){.et_pb_gutters3.et_pb_footer_columns2 #main-footer .footer-widget{width:50%}.et_pb_gutters3 #main-footer .footer-widget{margin-right:0}#footer-widgets .footer-widget{margin-bottom:0}}@media (max-width:1280px){#main-footer .container{padding:0 30px}}.main-button{color:#fff;background-image:url(../../assets/img/rhn-btn-bg.jpg);background-color:#2da0e3;background-size:contain;border-radius:2px;font-size:12px;font-weight:700;padding:18px 30px;transition:all .2s ease-in-out}.main-button:hover{background-image:url(../../assets/img/rhn-btn-hover.jpg)}.et-fixed-header .main-button{border-radius:0;padding:20px 30px}.large-image-button{height:440px;max-height:440px;display:flex;flex-direction:column;justify-content:flex-end;position:relative;transition:all .3s ease-in-out}.large-image-button:hover{background-color:rgba(0,0,0,.3)}.large-image-button .et_pb_promo_description{position:relative;transition:all .3s ease-in-out;padding-bottom:0!important}.large-image-button:hover .et_pb_promo_description{padding-bottom:20px!important}.large-image-button.leadership-headshot:hover .et_pb_promo_description{padding-bottom:10px!important}.large-image-button::after{content:\'\';width:0;height:3px;background-image:linear-gradient(to right,#2da0e3,#4dbeec,#2da0e3);position:absolute;left:50%;transform:translatex(-50%);transition:all .3s ease-in-out;bottom:25px;visibility:visible}.large-image-button:hover::after{content:\'\';width:75px;height:3px;background-image:linear-gradient(to right,#2da0e3,#4dbeec,#2da0e3);position:absolute;left:50%;transform:translatex(-50%);bottom:25px}.large-image-button.leadership-headshot{height:470px;max-height:470px}.large-image-button.leadership-headshot .et_pb_promo_description h4{padding-bottom:0}.large-image-button.leadership-headshot .et_pb_promo_description p{padding-bottom:.25em}.large-image-button.leadership-headshot::after{bottom:14px}.large-image-button.leadership-headshot:hover::after{bottom:14px}.large-image-button .et_pb_promo_button{width:100%!important;display:inline-block!important;line-height:40px!important;height:50px!important}.large-image-button.et_pb_promo{padding-right:20px!important;padding-left:20px!important}@media (min-width:801px){.cta-page-section .et_pb_module.call-to-action{display:flex;flex-direction:row;justify-content:space-between}.cta-page-section .et_pb_module.call-to-action .et_pb_promo_description{width:65%}.cta-page-section .et_pb_module.call-to-action .et_pb_button_wrapper{width:25%;padding-top:10px}}@media (max-width:800px){.cta-page-section .et_pb_module.call-to-action{display:flex;flex-direction:column;justify-content:space-between}.cta-page-section .et_pb_module.call-to-action .et_pb_promo_description{width:100%}.cta-page-section .et_pb_module.call-to-action .et_pb_button_wrapper{width:100%;padding-top:0}}#main-content .et_pb_section .et_pb_row .et_pb_button.et_pb_promo_button,.page-404 #main-content .et_pb_section .et_pb_fullwidth_header .et_pb_button{align-items:center;background-image:url(../../assets/img/rhn-btn-bg.jpg);background-color:#2da0e3;background-size:contain;display:flex!important;height:60px;justify-content:center;padding:0 0!important;transition:all .2s ease-in-out;width:250px}#main-content .et_pb_section .et_pb_row .et_pb_text_align_center .et_pb_button.et_pb_promo_button,.page-404 #main-content .et_pb_section .et_pb_fullwidth_header .et_pb_button{margin-left:auto;margin-right:auto}#main-content .et_pb_section .et_pb_row .et_pb_button.et_pb_promo_button:hover,.page-404 #main-content .et_pb_section .et_pb_fullwidth_header .et_pb_button:hover{background-image:url(../../assets/img/rhn-btn-hover.jpg)}#main-content .et_pb_section .et_pb_row .large-image-button .et_pb_button.et_pb_promo_button{background:0 0!important;height:auto!important;line-height:20px!important;padding:.3em 1em!important;width:auto!important}#main-content .et_pb_section .et_pb_row .large-image-button .et_pb_button.et_pb_promo_button:hover{background:0 0}table.tax-rates{text-align:center;font-size:16px}table.tax-rates tr{height:60px}table.tax-rates tr th{background:#02437b;color:#fff}table.tax-rates tr:nth-child(odd){background:#f9f9f9}table.tax-rates tr.bold{font-weight:600}table.tax-rates tr td{border-top:1px solid #f3f3f3}hr{height:1px;color:rgba(110,128,134,.2);background-color:rgba(110,128,134,.2);border:none}@media (max-width:480px){.table-wrapper{border:1px solid #f3f3f3;overflow-x:scroll}.table-wrapper table.tax-rates{border:none}}.contact-tabs .et_pb_tabs_controls.clearfix{display:flex;flex-wrap:wrap;justify-content:space-between;margin:0 auto 20px;max-width:1200px;padding:0!important}.contact-tabs .et_pb_tabs .et_pb_tabs_controls.clearfix li.et_pb_tab_active a{color:#fff!important}.contact-tabs p{padding-bottom:0}.contact-tabs p.address{margin-bottom:2em}.contact-tabs p.hours{margin-top:2em}.contact-tabs .far,.contact-tabs .fas{width:20px;text-align:center;margin-right:20px;position:relative}.contact-tabs .far.fa-clock.tax:after{content:\'TAX\';position:absolute;font-family:\'Source Sans Pro\',Helvetica,Arial,Lucida,sans-serif;font-size:10px;font-weight:800;text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000;bottom:-4px;left:50%;transform:translateX(-50%)}.contact-tabs h2{font-size:90px;font-weight:300;color:#fff;line-height:1.2em}.contact-tabs ul.et_pb_tabs_controls li{border:1px solid #dde1e4;border-right:1px solid #dde1e4!important;margin-bottom:1%;margin-left:1%;margin-right:1%;padding:1% 2%;text-align:center;width:23%}.contact-tabs .et_pb_code,.contact-tabs .et_pb_code_inner{height:100%}.contact-tabs .tab-text-content{margin:0 auto;max-width:100%;padding:120px 0}.contact-tabs .tab-text-content h2,.contact-tabs .tab-text-content p{margin:0 auto;max-width:1200px}.contact-tabs .et_pb_tab .tab-text-content{background-size:cover;background-position:top center}.contact-tabs .et_pb_tab_0 .tab-text-content{background-image:linear-gradient(90deg,rgba(0,0,0,.7) 0,rgba(0,0,0,.2) 100%),url(../../assets/img/rhn-cpa-locations-01-richmond.jpg)}.contact-tabs .et_pb_tab_1 .tab-text-content{background-image:linear-gradient(90deg,rgba(0,0,0,.7) 0,rgba(0,0,0,.2) 100%),url(../../assets/img/rhn-cpa-locations-02-vancouver.jpg)}.contact-tabs .et_pb_tab_2 .tab-text-content{background-image:linear-gradient(90deg,rgba(0,0,0,.7) 0,rgba(0,0,0,.2) 100%),url(../../assets/img/rhn-cpa-locations-03-kelowna.jpg)}.contact-tabs .et_pb_tab_3 .tab-text-content{background-image:linear-gradient(90deg,rgba(0,0,0,.7) 0,rgba(0,0,0,.2) 100%),url(../../assets/img/rhn-cpa-locations-04-osoyoos.jpg)}.contact-tabs .tab-map>.et_pb_row{display:flex;flex-wrap:wrap;max-width:100%!important;width:100%!important}.contact-tabs .tab-map>.et_pb_row>.et_pb_column:first-child{margin-left:auto;margin-right:2.75%;max-width:600px}.contact-tabs .tab-map>.et_pb_row .et_pb_column:first-child p{color:#6e8086!important}.contact-tabs .tab-map>.et_pb_row .et_pb_column .et_pb_map{height:680px}.contact-tabs .et_pb_row:after,.contact-tabs .et_pb_row_inner:after,.contact-tabs .et_pb_slides:after{display:none}@media (max-width:980px){.contact-tabs .tab-text-content{padding:60px 30px}}@media (max-width:768px){.contact-tabs h2{font-size:60px}.contact-tabs .tab-map>.et_pb_row>.et_pb_column:first-child{max-width:100%;margin:0}.contact-tabs .tab-text-content{margin-bottom:0;padding-left:35px;padding-right:35px}.contact-tabs .et_pb_tabs_controls.clearfix{padding:0 30px!important}.contact-tabs .et_pb_tabs .et_pb_tabs_controls.clearfix li{width:48%}.contact-tabs .et_pb_tabs .et_pb_tabs_controls.clearfix li a{width:10%;text-align:center}}@media (max-width:480px){.contact-tabs .et_pb_tabs .et_pb_all_tabs .et_pb_tab{background-size:180% auto}.contact-tabs h2{font-size:40px}.contact-tabs .tab-text-content{margin-bottom:0;padding-left:30px;padding-right:30px}}.section-services .et_pb_button_module_wrapper .et_pb_button.services-button{align-items:center;background:0 0;border:1px solid #dde1e2;border-radius:2px;color:#00427a;display:flex;font-size:22px;justify-content:center;line-height:1.2em!important;height:80px;padding:0 60px;transition:all .2s ease-in-out!important;text-align:center;width:100%}.section-services .et_pb_button_module_wrapper .et_pb_button.services-button:hover{color:#fff!important;background:linear-gradient(to right,#2da0e3,#4dbeec,#2da0e3);border-color:transparent;box-shadow:0 30px 40px rgba(0,0,0,.2);padding:0 60px!important}.section-services .et_pb_column .et_pb_button_module_wrapper:after{font-family:\"Font Awesome 5 Free\",\"Font Awesome 5 Brands\",FontAwesome;font-size:30px;font-weight:900;position:absolute;color:#00427a;left:20px;top:50%;transform:translateY(-50%);z-index:999}.section-services #audit.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f187\'}.section-services #bookkeeping.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f02d\'}.section-services #business-advisory.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f54f\'}.section-services #corporate-tax-preparation.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f1ad\'}.section-services #financial-investigation.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f688\'}.section-services #financial-planning.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f201\'}.section-services #financial-statement-reporting.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f15c\'}.section-services #forensic-accounting.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f610\'}.section-services #government-reporting.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f785\'}.section-services #gst-pst-hst.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f295\'}.section-services #seminars-computer-solutions-training.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f109\'}.section-services #succession-planning.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f0e8\'}.section-services #tax-planning-tax-advance.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f086\'}.section-services #information-return-preparation.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f2ea\'}.section-services #elder-care.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f29d\'}.section-services #family-trust.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f0c0\'}.section-services #withholding-tax-remit.et_pb_column .et_pb_button_module_wrapper:after{content:\'\\f4c0\'}.section-services .et_pb_column .et_pb_button_module_wrapper:hover:after{color:#fff}.et_pb_button.et_hover_enabled:hover:after,.et_pb_button.et_pb_hovered:hover:after{display:none}@media (max-width:480px){.section-services .et_pb_button_module_wrapper .et_pb_button.services-button{font-size:18px;padding:0 30px 0 70px}.section-services .et_pb_column .et_pb_button_module_wrapper:after{font-size:20px;left:30px}}.et_pb_section .et_pb_promo_description{margin-bottom:20px}.et_pb_section .leadership-headshot .et_pb_promo_description{margin-top:10px;margin-bottom:10px}@media (max-width:480px){.et_pb_section .et_pb_promo_description{margin-bottom:0}}.job-opennings .et_pb_toggle_title:before{content:\"\\f078\";font-family:\"Font Awesome 5 Free\",\"Font Awesome 5 Brands\",FontAwesome!important}.job-opennings .et_pb_toggle_open .et_pb_toggle_title:before{display:block!important;content:\"\\f077\";color:#4bbbec}ol li,ul li{margin-bottom:.8em}ol li:last-child,ul li:last-child{margin-bottom:0}.home-slider .et_pb_slide .et_pb_container{height:auto!important;min-height:630px!important}@media (min-width:980px){.home-slider .et_pb_slide{padding-top:124px!important}}@media (max-width:480px){.home-slider .et_pb_slide{padding-left:0!important;padding-right:0!important}.home-slider .et_pb_slide .et_pb_slide_description{width:80%}}.et_pb_gallery_item,.et_pb_gallery_item .et-pb-active-slide{max-height:650px}.et_pb_gallery .et-pb-slider-arrows .et-pb-arrow-next,.et_pb_gallery .et-pb-slider-arrows .et-pb-arrow-prev{color:#fff!important}.et_pb_gallery .et-pb-controllers a{background-color:rgba(255,255,255,.3)}.et_pb_gallery .et-pb-controllers a.et-pb-active-control{background-color:#fff}.gform_wrapper .gform_body input[type=text]{background:0 0;border-top:none;border-left:none;border-right:none;border-bottom:1px solid rgba(255,255,255,.2);color:#fff;font-size:24px!important;font-weight:300;padding:0 0 10px!important}.gform_wrapper .gform_body input::placeholder{color:#fff}.gform_wrapper .gform_body ul.gform_fields li.gfield{margin-top:20px}.gform_wrapper .gform_body .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text]{margin-bottom:0}.gform_wrapper form .gform_footer{margin-top:50px;padding:0}.gform_wrapper .gform_body input::placeholder{color:#fff}.gform_button{color:#fff;cursor:pointer;background-image:url(../../assets/img/rhn-btn-bg.jpg);background-color:#2da0e3;background-size:cover;border:none;border-radius:2px;box-shadow:0 30px 40px rgba(0,0,0,.3);font-size:16px!important;font-weight:400;height:60px;padding:18px 30px;transition:all .2s ease-in-out;width:calc(50% - 16px)!important}.gform_button:hover{background-image:url(../../assets/img/rhn-btn-hover.jpg);color:#fff}.dark-form .gform_wrapper .gform_heading .gform_title,.gform_wrapper .rhn-form .gform_heading .gform_title{color:#ab8616;font-size:32px;font-weight:200}.dark-form .gform_wrapper .gform_body .gsection,.gform_wrapper .rhn-form .gform_body .gsection{border:none}.dark-form .gform_wrapper li.gfield.field_description_below+li.gsection,.gform_wrapper .rhn-form li.gfield.field_description_below+li.gsection{margin:70px 0 0!important}.dark-form .gform_wrapper .gform_body .gsection .gsection_title,.gform_wrapper .rhn-form .gform_body .gsection .gsection_title{color:#0b3376;font-size:32px;font-weight:300}.dark-form .gform_wrapper .gform_body input[type=text],.gform_wrapper .rhn-form .gform_body input[type=text],form.cart .nyp input[type=text],form.cart table tr td input[type=text]{border-bottom:1px solid rgba(110,128,134,.2);color:#6e8086;font-size:16px!important;font-weight:400;transition:all .2s ease-in-out}.dark-form .gform_wrapper .gform_body input[id^=input_]:focus,.gform_wrapper .rhn-form .gform_body input[id^=input_]:focus,form.cart .nyp input:focus,form.cart table tr td input:focus{border-bottom:1px solid #2da0e3}.dark-form .gform_wrapper .top_label .gfield_label,.gform_wrapper .rhn-form .top_label .gfield_label{font-size:16px;font-weight:400}.dark-form .gform_wrapper .gform_body textarea,.gform_wrapper .rhn-form .gform_body textarea,form.cart .nyp textarea,form.cart table tr td textarea{background:0 0;border:1px solid rgba(110,128,134,.2);border-radius:2px;color:#6e8086;font-size:16px;height:100px}.dark-form .gform_wrapper .gform_body input::placeholder,.gform_wrapper .rhn-form .gform_body input::placeholder,form.cart .nyp input::placeholder,form.cart table tr td input::placeholder{color:#6e8086}.dark-form .gform_wrapper .gform_body ul.gfield_checkbox,.dark-form .gform_wrapper .gform_body ul.gfield_radio,.gform_wrapper .rhn-form .gform_body ul.gfield_checkbox,.gform_wrapper .rhn-form .gform_body ul.gfield_radio{display:flex;flex-wrap:wrap}.dark-form .gform_wrapper .gform_body ul.gfield_checkbox li,.dark-form .gform_wrapper .gform_body ul.gfield_radio li,.gform_wrapper .rhn-form .gform_body ul.gfield_checkbox li,.gform_wrapper .rhn-form .gform_body ul.gfield_radio li{font-size:16px;margin-right:30px}.dark-form .gform_wrapper .gform_body .ginput_container_date .datepicker,.gform_wrapper .rhn-form .gform_body .ginput_container_date .datepicker{width:100%}.dark-form .gform_wrapper .gform_body .gfield_select,.gform_wrapper .rhn-form .gform_body .gfield_select{background:0 0;border:none;border-bottom:1px solid rgba(110,128,134,.2);border-radius:0;color:#6e8086;font-size:16px!important;font-weight:400;margin:10px 0 0 0;padding:0 0 10px 0;-webkit-appearance:none;appearance:none;z-index:1}.dark-form .gform_wrapper .gform_body .ginput_container_select,.gform_wrapper .rhn-form .gform_body .ginput_container_select{position:relative}.dark-form .gform_wrapper .gform_body .ginput_container_select:after,.gform_wrapper .rhn-form .gform_body .ginput_container_select:after{color:#000;content:\"\\f0dc\";font-family:\"Font Awesome 5 Free\",\"Font Awesome 5 Brands\",FontAwesome;position:absolute;right:10px;top:50%;transform:translateY(-50%);z-index:0}.gform_wrapper .gform_body li.gfield.gfield_error{background-color:#fff;border:none;padding:0}.gform_wrapper.gform_validation_error .validation_error{color:red;border:none;font-size:1.4em;font-weight:400;text-align:left;width:calc(100% - 16px)}.gform_wrapper .validation_message{display:none}.gform_wrapper .gform_body .gfield_error input[type=text]{background:0 0!important;border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:1px solid rgba(255,0,0,.2)!important}.gform_wrapper .gform_body li.gfield_error input::placeholder{color:red!important}@media (max-width:480px){.gform_button{width:100%!important}}.job-opennings .gform_wrapper form{border-top:1px solid #d3d3d3;padding-top:30px}.job-opennings.dark-form .gform_wrapper .gform_heading .gform_title{color:#0b3376;font-size:65px;font-weight:300;padding-bottom:0}@media (min-width:481px){.job-opennings .gform_wrapper .gform_body ul.gform_fields li.gfield{display:inline-block;padding-right:30px;width:25%}.job-opennings .gform_button{box-shadow:none;width:calc(25% - 30px)!important}}form.cart .nyp label,form.cart table tr td:first-child{display:none}form.cart .nyp input[type=text],form.cart table tr td input[type=text]{border-top:none;border-left:none;border-right:none;margin-top:12px;padding:0 0 10px;width:100%}form.cart .nyp .gform_button,form.cart .single_add_to_cart_button{margin-top:50px}.product .cart .nyp,.product .cart .nyp input[type=text]{margin-bottom:0;text-align:left}form.cart table{width:100%}#content-area form.cart table td{padding:20px 0 0 0}.woocommerce .product .summary .product_title,.woocommerce-cart .main_title,.woocommerce-checkout .main_title{color:#00427a;font-size:60px;font-weight:300}.woocommerce form.cart .single_add_to_cart_button.button.alt{align-items:center;background-image:url(../../assets/img/rhn-btn-bg.jpg);background-color:#2da0e3;background-size:cover;border:none;color:#fff;display:flex!important;font-size:16px;height:60px;justify-content:center;padding:0 0!important;transition:all .2s ease-in-out;width:250px}.woocommerce form.cart .single_add_to_cart_button.button.alt:hover{background-image:url(../../assets/img/rhn-btn-hover.jpg)}.woocommerce form.cart .single_add_to_cart_button.button.alt:hover:after{display:none}.woocommerce .woocommerce-error,.woocommerce .woocommerce-info,.woocommerce .woocommerce-message{background:0 0;color:red!important;font-weight:300;padding:0!important}.woocommerce-additional-fields h3,.woocommerce-billing-fields h3,h3#order_review_heading{color:#00427a}h3#order_review_heading{margin-bottom:10px}.woocommerce form .form-row{margin-top:8px;padding:0}.woocommerce form .form-row label{display:none}.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{border-radius:0;border-top:0;border-right:0;border-bottom:1px solid rgba(0,0,0,.2);border-left:0;color:#6e8086;font-size:16px;margin-top:20px;padding:0 0 10px 0;transition:all .2s ease-in-out}.woocommerce form .form-row textarea#order_comments{border:1px solid rgba(0,0,0,.2);height:155px;padding:10px}.woocommerce form .form-row input:focus{border-bottom:1px solid #2da0e3}.select2-container--default .select2-selection--single{border:none;border-bottom:1px solid rgba(0,0,0,.2);border-radius:0;padding-bottom:10px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#6e8086}.select2-container .select2-selection--single{height:auto;margin:0}.select2-container .select2-selection--single .select2-selection__rendered{font-size:16px;line-height:normal;margin-top:20px;padding:0}.select2-container .select2-selection--single .select2-selection__rendered .select2-selection__placeholder{color:#6e8086}.select2-container .select2-selection--single .select2-selection__arrow{top:20px}.woocommerce-checkout .select2-container--open .select2-dropdown--above{background:#fafbfd;border:none}.woocommerce-checkout .select2-container--open .select2-dropdown--above .select2-search--dropdown{padding:10px}.woocommerce-checkout .select2-container--open .select2-dropdown--above .select2-search--dropdown .select2-search__field{border:1px solid rgba(0,0,0,.2)}.woocommerce-checkout .select2-container--open .select2-dropdown--above .select2-results__option{padding:6px 10px}.woocommerce-checkout #customer_details{margin-bottom:50px}.hero .home-slider .et_pb_slides .et_pb_slide .et_pb_slide_title{margin-bottom:20px}.hero .home-slider .et_pb_slides .et_pb_slide .et_pb_slide_content{margin-bottom:50px}body #page-container .hero .home-slider .et_pb_slides .et_pb_slide .et_pb_button.et_pb_more_button{align-items:center;background-image:url(../../assets/img/rhn-btn-bg.jpg);background-color:#2da0e3;background-size:contain;display:flex!important;height:60px;justify-content:center;padding:0!important;transition:all .2s ease-in-out;width:250px}body #page-container .hero .home-slider .et_pb_slides .et_pb_slide .et_pb_button.et_pb_more_button:hover{background-image:url(../../assets/img/rhn-btn-hover.jpg);padding:0!important}.et_pb_slider .et_pb_container,.hero .et_pb_slider .et_pb_container{width:100%}.testimonials .et-pb-controllers .et-pb-active-control{background-color:#16b7fd}.testimonials .et-pb-controllers a{background-color:#00427a}.et-pb-controllers a{height:10px;width:10px}@media all and (max-width:767px){.light-bg-mobile{position:relative;background-position:top left}.light-bg-mobile:before{content:\"\";position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.5)}.dark-bg-mobile{position:relative;background-position:top right}.dark-bg-mobile:before{content:\"\";position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.4)}.bg-left-mobile{background-position:top left!important}.bg-right-mobile{background-position:top right!important}}@media all and (max-width:479px){.hero .home-slider .et_pb_slides .et_pb_slide{background-position:10% 50%}}@media (max-width:480px){#main-content .blog-body article .entry-title{margin-bottom:15px}#main-content .blog-body article .post-meta{font-size:15px;line-height:1.4em;margin-bottom:15px}}.single-post #main-content .entry-title{color:#00427a;font-size:50px;font-weight:300;margin-bottom:10px}.category #main-content .entry-title{color:#00427a;font-size:30px;font-weight:300}.category #main-content .post-meta,.single-post #main-content .post-meta{font-weight:600;margin-bottom:20px}.category #main-content .entry-content p,.single-post #main-content .entry-content p{font-size:16px;line-height:2em}.category #main-content #sidebar .widgettitle,.single-post #main-content #sidebar .widgettitle,.woocommerce-cart #main-content #sidebar .widgettitle{color:#00427a;font-weight:600}@media (max-width:480px){.single-post #main-content .entry-title{font-size:35px}}.post-content .more-link{display:inline-block;margin-top:10px;padding-top:10px;text-transform:capitalize}.post-content .more-link{position:relative}.post-content .more-link:after{background:#2da0e3;bottom:-2px;content:\"\";height:1px;left:0;right:100%;position:absolute;transition:right .3s ease-out}.post-content .more-link:hover:after{right:0}.blog-body .et_pb_blog_grid .et_pb_post{padding:30px}.blog-body .et_pb_blog_grid .et_pb_post .et_pb_image_container{margin:-31px -31px 30px}.blog-body .et_pb_blog_grid .et_pb_post .et_pb_image_container img{border:1px solid #f3f3f3}.blog-body .pagination .alignleft,.blog-body .pagination .alignright,.category .pagination .alignleft,.category .pagination .alignright,.search-results .pagination .alignleft,.search-results .pagination .alignright{margin-top:40px}.blog-body .pagination .alignleft a,.blog-body .pagination .alignright a,.category .pagination .alignleft a,.category .pagination .alignright a,.search-results .pagination .alignleft a,.search-results .pagination .alignright a{background:linear-gradient(to right,#2da0e3,#4dbeec,#2da0e3);background-color:#2da0e3;border-radius:2px;color:#fff;padding:10px 30px;text-align:center;transition:all .3s ease-in-out}.blog-body .pagination .alignleft a:hover,.blog-body .pagination .alignright a:hover,.category .pagination .alignleft a:hover,.category .pagination .alignright a:hover,.search-results .pagination .alignleft a:hover,.search-results .pagination .alignright a:hover{background:#2da0e3}.archive.category #left-area,.search.search-results #left-area{padding-bottom:70px}.archive.category #left-area article,.search.search-results #left-area article{border:1px solid #e2e2e2;border-radius:3px;margin-bottom:40px;padding:40px;transition:all .2s ease-in-out}.archive.category #left-area article .entry-featured-image-url,.search.search-results #left-area article .entry-featured-image-url{float:left;margin-right:20px;max-height:150px;max-width:30%;overflow:hidden}.archive.category #left-area article .post-meta,.search.search-results #left-area article .post-meta{font-weight:600;margin-bottom:0}.archive.category #left-area article .post-meta a,.search.search-results #left-area article .post-meta a{color:#6e8086}.archive.category #left-area article:hover,.search.search-results #left-area article:hover{border:1px solid #2da0e3;box-shadow:0 10px 30px 10px rgba(0,0,0,.05),0 5px 10px 5px rgba(0,0,0,.07)}.archive.category #left-area article:last-child,.search.search-results #left-area article:last-child{border:none;margin-bottom:0;padding-bottom:20px}.search.search-results #main-content .container:before{display:none}.search.search-results #left-area{display:flex;flex-wrap:wrap;justify-content:space-between;padding-right:0;width:100%}.search.search-results #left-area article{flex:0 1 48%}.search.search-results #left-area .pagination{flex:0 1 100%}.search.search-results #sidebar{display:none}@media (max-width:980px){.search.search-results #left-area article{flex:0 1 100%}}.widget_search input#searchsubmit{background-color:#2da0e3;border:1px solid #2da0e3;color:#fff;transition:all .2s ease-in-out}.widget_search input#searchsubmit:hover{background-color:#268bc5;border:1px solid #268bc5}.et_pb_widget li a:hover{color:#2da0e3}.page-404 #main-content:before{display:none}.section-404{position:relative}.section-404:after{color:#fafbfd;content:\'404\';font-size:40vw;font-weight:800;left:50%;position:absolute;text-shadow:0 20px 80px rgba(0,0,0,.07);top:48%;transform:translate(-50%,-50%)}.section-404 .header-logo{left:50%;max-width:200px;position:absolute;top:30px;transform:translateX(-50%)}@media (max-width:480px){.section-404 .et_pb_fullwidth_header .et_pb_fullwidth_header_container .header-content{width:100%}.section-404 .header-content-container{margin-top:200px}.section-404:after{top:32%}}@media (max-width:765px) and (min-width:550px){.shareholders .et_pb_text_4,.shareholders .et_pb_text_5,.shareholders .et_pb_text_6,.shareholders .et_pb_text_7,.shareholders .et_pb_text_8,.shareholders .et_pb_text_9{flex:0 1 40%}}@media (max-width:549px){.shareholders .et_pb_text_4,.shareholders .et_pb_text_5,.shareholders .et_pb_text_6,.shareholders .et_pb_text_7,.shareholders .et_pb_text_8,.shareholders .et_pb_text_9{flex:0 1 90%;padding-top:470px!important}}@media (max-width:480px){.online-payments.et_pb_section.et_pb_section_2{background-image:linear-gradient(180deg,#fff 53%,#f8fcfe 50%)!important}}@media (min-width:481px) and (max-width:768px){.online-payments.et_pb_section.et_pb_section_2{background-image:linear-gradient(180deg,#fff 46%,#f8fcfe 40%)!important}}.careers-video .header-content .vp-a{align-items:center;border:1px solid #fff;border-radius:2px;color:#fff;display:flex;height:60px;justify-content:center;margin:40px auto 0;padding-left:2em;position:relative;transition:all .2s ease-in-out;width:250px}.careers-video .header-content .vp-a:hover{background:#fff;color:#000}.careers-video .header-content .vp-a:before{content:\"\\f144\";font-family:\"Font Awesome 5 Brands\",\"Font Awesome 5 Free\",FontAwesome!important;font-size:24px;left:2em;position:absolute}#content-area .woocommerce-cart-form table td,#content-area .woocommerce-cart-form table th,#content-area .woocommerce-cart-form table tr,#content-area .woocommerce-checkout-review-order table td,#content-area .woocommerce-checkout-review-order table th,#content-area .woocommerce-checkout-review-order table tr{padding:1em}.woocommerce table.shop_table{border-radius:2px}.woocommerce-cart table.cart td.actions .coupon input[type=text]{background-color:rgba(110,128,134,.1)!important;border-radius:0;color:#666!important;height:50px;width:250px}.woocommerce-cart table.cart td.actions .coupon input::placeholder{color:#666!important;font-size:20px;font-weight:300}.woocommerce-cart table.cart td.actions .coupon .button{background:#00427a;border:none;border-radius:2px;color:#fff;font-family:\'Source Sans Pro\',Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;height:50px;letter-spacing:2px;padding:0 25px;text-transform:uppercase}.woocommerce-cart table.cart td.actions .coupon .button:hover:after{display:none}.woocommerce-cart table.cart td.actions .button{border:none;color:#00427a;font-family:\'Source Sans Pro\',Helvetica,Arial,Lucida,sans-serif;font-size:14px;height:50px;margin-top:0;opacity:1;padding:0;position:relative}.woocommerce-cart table.cart td.actions .coupon .button:hover{background-color:#00427a;opacity:.7}.woocommerce-cart table.cart td.actions .button:hover{background-color:transparent}.woocommerce-cart table.cart td.actions .button:before{background:#00427a;bottom:14px;content:\'\';height:1px;left:0;position:absolute;width:100%}.woocommerce-cart table.cart td.actions .button:after{display:none}.woocommerce-message a.button.wc-forward{background:#fff;border:none;font-size:18px;padding:0}.cart-collaterals .wc-proceed-to-checkout a.button.checkout-button,.woocommerce-checkout #payment .form-row.place-order #place_order{align-items:center;background:linear-gradient(to right,#2da0e3,#4dbeec,#2da0e3);background-color:#2da0e3;border:none;color:#fff;display:flex!important;font-size:16px;height:60px;justify-content:center;padding:0 0!important;transition:all .2s ease-in-out}.cart-collaterals .wc-proceed-to-checkout a.button.checkout-button:hover{background:#2da0e3!important}.woocommerce-checkout #payment ul.payment_methods.methods{border-bottom:1px solid rgba(0,0,0,.2)}.woocommerce-checkout #payment .form-row.place-order,.woocommerce-checkout #payment ul.payment_methods.methods{padding:2em}.woocommerce-checkout #payment .form-row.place-order #place_order:hover{background-position:125px}.cart-collaterals .wc-proceed-to-checkout a.button.checkout-button:hover:after,.woocommerce-checkout #payment .form-row.place-order #place_order:hover:after{display:none}.cart-collaterals .cart_totals h2,.shipping_calculator h2{color:#00427a;font-weight:300}.woocommerce-checkout .woocommerce-checkout-review-order #payment.woocommerce-checkout-payment{background:#fafbfd}.woocommerce-checkout .woocommerce-checkout-review-order #payment.woocommerce-checkout-payment .wc_payment_method.payment_method_moneris label{color:#00427a;font-size:18px}.woocommerce-checkout .woocommerce-checkout-review-order #payment.woocommerce-checkout-payment .wc_payment_method.payment_method_moneris .payment_box{background-color:#fff;padding:2em}.woocommerce-checkout .woocommerce-checkout-review-order #payment.woocommerce-checkout-payment .wc_payment_method.payment_method_moneris .payment_box:before{border:1em solid #fff;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent}.woocommerce-checkout .woocommerce-checkout-review-order #payment.woocommerce-checkout-payment .form-row.place-order{margin-top:0}.woocommerce-checkout .woocommerce-checkout-review-order #payment.woocommerce-checkout-payment .form-row.place-order #place_order{width:250px}.careers-bamboo #BambooHR .BambooHR-ATS-board h2{border:none!important;color:#00427a;font-size:60px;font-weight:300;padding-bottom:20px}.careers-bamboo #BambooHR .BambooHR-ATS-board p{color:#6e8086}.careers-bamboo #BambooHR .BambooHR-ATS-board ul,.careers-bamboo #BambooHR .BambooHR-ATS-board ul ul{padding:0}.careers-bamboo #BambooHR .BambooHR-ATS-board ul ul{border:1px solid #f3f3f3}.careers-bamboo #BambooHR .BambooHR-ATS-board ul ul li{padding:20px;border-bottom:1px solid #f3f3f3}.careers-bamboo #BambooHR .BambooHR-ATS-board ul ul li a{color:#00427a;font-size:2em;font-weight:600}.careers-bamboo #BambooHR .BambooHR-ATS-board ul ul li:last-child{border:none}@media (max-width:480px){.careers-bamboo #BambooHR .BambooHR-ATS-board h2{font-size:30px}}@media (max-width:980px){.careers-bamboo #BambooHR .BambooHR-ATS-board h2{font-size:42px}}.rbox-widget .rbox-jobs-group h3{color:#ab8616;font-size:2em;font-weight:300;margin-bottom:20px}.rbox-opening-list .rbox-opening-li{border:1px solid #f3f3f3;padding:20px}.rbox-opening-list .rbox-opening-li a{color:#00427a;font-size:1.5em;font-weight:600}.rbox-opening-list .rbox-opening-li .rbox-job-shortdesc{opacity:1;position:relative}.rbox-opening-list .rbox-opening-li .rbox-opening-position-info{margin:0;position:absolute;right:0}.rbox-widget .rbox-opening-position-type{border:none;border-radius:2px;background:#2da0e3;color:#fff;font-size:12px;font-weight:600;line-height:1;padding:5px 10px;text-transform:uppercase}.rbox-job-fullpage{background:#fafbfd;border:1px solid #f3f3f3;padding:20px}.rbox-job-fullpage h2{color:#00427a;font-weight:600}.iframe-content iframe body{font-family:\"Source Sans Pro\",Helvetica,Arial,Lucida,sans-serif}.iframe-content iframe body p{font-family:\"Source Sans Pro\",Helvetica,Arial,Lucida,sans-serif;line-height:1.65em}.iframe-content iframe body h3{font-family:\"Source Sans Pro\",Helvetica,Arial,Lucida,sans-serif;font-size:3.75em;font-weight:200;line-height:1em;margin-bottom:20px}.iframe-content iframe body hr{opacity:.2}.brochure-section{overflow:hidden}.brochure-section .et_pb_column_single .et_pb_image,.brochure-section .et_pb_column_single .et_pb_image .et_pb_image_wrap{height:100%}.brochure-section .et_pb_column_single .et_pb_image .et_pb_image_wrap{position:relative;width:100%}.brochure-section .et_pb_column{margin-bottom:0}.brochure-section .call-to-action .et_pb_promo_description{margin-bottom:0;padding-bottom:0}@media (min-width:980px){.brochure-section .et_pb_column_single .et_pb_image img{max-width:none;position:absolute;right:-20%;bottom:-10%}}@media (max-width:480px){.entry-content .et_pb_section.et_pb_fullwidth_section .et_pb_post_title{padding-top:200px!important;padding-bottom:125px!important}}@media (min-width:481px) and (max-width:980px){.entry-content .et_pb_section.et_pb_fullwidth_section .et_pb_post_title{padding-top:250px!important;padding-bottom:175px!important}}@media (max-width:980px){.et_pb_section.contact-us-hero{padding-top:140px!important;padding-bottom:50px}}@media (min-width:980px){.et_pb_section.contact-us-hero{padding-top:204px!important}.board-member .et_pb_section_0{padding-top:124px!important}}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:\'\';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-60px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:\'\';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-60px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:\'\';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2021-12-16 18:06:59','2021-12-16 18:06:59','',5,'https://capitalbookkeepingco.com/?p=123',0,'revision','',0),(1019,1,'2023-08-29 20:28:10','2023-08-29 20:28:10','{\n    \"custom_css[Divi_Child]\": {\n        \"value\": \".wpcf7 input, textarea.wpcf7-form-control {\\n    background: transparent;\\n    border: 2px solid #fff;\\n    padding: 10px;\\n    font-size: 16px;\\n    color: #fff;\\n\\twidth: 100%;\\n}\\n\\n\\n.wpcf7 ::placeholder{\\n  color: #fff;\\n \\n}\\n\\n.wpcf7 input[type=text]:focus {\\n    border-color: #fff !important;\\n}\\n\\n.wpcf7 form.invalid .wpcf7-response-output {\\n    color: #fff;\\n}\\n\\ntextarea.wpcf7-form-control {\\n\\n    height: 150px;\\n    \\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-08-29 20:28:10\"\n    }\n}','','','trash','closed','closed','','8f4a4251-9e4e-4a90-aa08-ce0785c3b5ef','','','2023-08-29 20:28:10','2023-08-29 20:28:10','',0,'https://capitalbookkeepingco.com/8f4a4251-9e4e-4a90-aa08-ce0785c3b5ef/',0,'customize_changeset','',0),(993,1,'2023-08-29 18:11:46','2023-08-29 18:11:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.19.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.58) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.19.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"mailto:info@capitalbookkeepingco.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.19.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"mailto:info@capitalbookkeepingco.com\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"info@capitalbookkeepingco.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.22.1\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.19.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px|true|true\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.16\" _module_preset=\"default\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px|true|true\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2023-08-29 18:11:46','2023-08-29 18:11:46','',118,'https://capitalbookkeepingco.com/?p=993',0,'revision','',0),(294,1,'2022-01-11 18:33:40','2022-01-11 18:33:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"mailto:info@capitalbookkeepingco.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"mailto:info@capitalbookkeepingco.com\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %% Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.5\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px|true|true\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5%|5%|3%|5%|false|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px|true|true\" custom_padding=\"0px|0px|0px|0px|true|true\" sticky_enabled=\"0\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2022-01-11 18:33:40','2022-01-11 18:33:40','',118,'https://capitalbookkeepingco.com/?p=294',0,'revision','',0),(124,1,'2021-12-16 18:07:06','2021-12-16 18:07:06','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" title_text=\"Accountant calculating profit with financial analysis graphs\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" use_background_color_gradient=\"on\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_layout=\"dark\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" header_text_color=\"#FFFFFF\" url=\"tel:250-707-8290\" url_new_window=\"on\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Email\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" header_text_color=\"#FFFFFF\" url=\"tel:250-707-8290\" url_new_window=\"on\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3 class=\"et_pb_module_header\">Request For Proposal</h3>\n<div>\n<p>Click the button below to start a request for proposal. If your request relates to a Strata Corporation specifically, please<span> </span><a href=\"#\">click here</a>.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" button_alignment=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#e2e2e2\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"100px||100px||true|false\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3>Our Locations</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_4,1_4,1_4,1_4\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_button button_text=\"Location 1\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" button_alignment=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_button button_text=\"Location 1\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" button_alignment=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_button button_text=\"Location 1\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" button_alignment=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_button button_text=\"Location 1\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" button_alignment=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" width=\"100%\" max_width=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding=\"0px|0px|0px|0px|true|true\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\" custom_padding=\"5%|5%|3%|5%|false|true\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Capital Bookkepping Serving the community for over 50 years.</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>Proudly serving the Capital Bookkeeping community, we offer a wide range of personal and professional accounting knowledge, business advisory and audit-related services to a broad client base operating locally and in a variety of industries, including businesses, Strata Corporations, Not-for-Profit organizations, and First Nations.</p>\n<p>We are closely integrated with our offices in Vancouver, Kelowna and Osoyoos, thereby allowing for coordinated activity across locations, as well as the ability to draw on the extensive technical depth and accounting abilities of others in the firm, to effectively provide accounting and business advisory services to meet our diverse clients’ needs. For your convenience, clients can access their financial documents 24/7 through our secure online portal.</p>\n</div>\n</div>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\" custom_padding=\"0px|0px|0px|0px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_code _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_3_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3 class=\"et_pb_module_header\">Directors in attendance</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_4,1_4,1_4,1_4\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_team_member name=\"Name Goes Here\" image_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" position=\"Position\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_team_member][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_4\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2021-12-16 18:07:06','2021-12-16 18:07:06','',118,'https://capitalbookkeepingco.com/?p=124',0,'revision','',0),(140,1,'2021-12-16 18:50:04','2021-12-16 18:50:04','','Business finance man calculating budget numbers, Invoices and fi','Business finance man calculating budget numbers, Invoices and financial adviser working.','inherit','open','closed','','business-finance-man-calculating-budget-numbers-invoices-and-fi','','','2021-12-16 18:50:04','2021-12-16 18:50:04','',137,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working.jpg',0,'attachment','image/jpeg',0),(142,1,'2021-12-16 18:52:02','2021-12-16 18:52:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Blog\" header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/business-finance-man-calculating-budget-numbers-invoices-financial-adviser-working-scaled.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"3_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" sticky_enabled=\"0\"][et_pb_column type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_sidebar _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" show_border=\"off\" sticky_enabled=\"0\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]','Blog','','inherit','closed','closed','','137-revision-v1','','','2021-12-16 18:52:02','2021-12-16 18:52:02','',137,'https://capitalbookkeepingco.com/?p=142',0,'revision','',0),(147,1,'2021-12-16 19:08:16','2021-12-16 19:08:16','','Economist in office','Successful financier with papers making notes in notebook in office','inherit','open','closed','','economist-in-office','','','2021-12-16 19:08:16','2021-12-16 19:08:16','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/economist-office.jpg',0,'attachment','image/jpeg',0),(493,1,'2022-03-11 14:09:28','2022-03-11 14:09:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Resources\" header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/economist-office-scaled.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Tax Rates\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Tools\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Info Center\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2>Testimonials</h2>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Resources','','inherit','closed','closed','','104-revision-v1','','','2022-03-11 14:09:28','2022-03-11 14:09:28','',104,'https://capitalbookkeepingco.com/?p=493',0,'revision','',0),(148,1,'2021-12-16 19:10:51','2021-12-16 19:10:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Resources\" header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Economist in office\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/economist-office-scaled.jpg\" use_background_color_gradient=\"on\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Tax Rates\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Tools\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Info Center\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2>Testimonials</h2>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Resources','','inherit','closed','closed','','104-revision-v1','','','2021-12-16 19:10:51','2021-12-16 19:10:51','',104,'https://capitalbookkeepingco.com/?p=148',0,'revision','',0),(214,1,'2021-12-28 20:08:58','2021-12-28 20:08:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Businesses\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"First Nation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Starta Corp\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Profit\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Wineries & Vinyards\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal, Trust & Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Resident\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Book Keeping\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal Real Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2021-12-28 20:08:58','2021-12-28 20:08:58','',94,'https://capitalbookkeepingco.com/?p=214',0,'revision','',0),(146,1,'2021-12-16 18:55:13','2021-12-16 18:55:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title=\"Services\" title_text=\"workplace-team-cooperation-businesswoman-laptop-office\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_orientation=\"center\" text_font_size=\"18px\" sticky_enabled=\"0\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Businesses\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"First Nation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Starta Corp\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Profit\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Wineries & Vinyards\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal, Trust & Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Resident\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Book Keeping\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal Real Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2021-12-16 18:55:13','2021-12-16 18:55:13','',94,'https://capitalbookkeepingco.com/?p=146',0,'revision','',0),(151,1,'2021-12-16 19:21:21','2021-12-16 19:21:21',' ','','','publish','closed','closed','','151','','','2021-12-16 19:21:21','2021-12-16 19:21:21','',0,'https://capitalbookkeepingco.com/?p=151',4,'nav_menu_item','',0),(152,1,'2021-12-16 19:22:05','2021-12-16 19:22:05','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" positioning=\"none\" position_origin_a_tablet=\"\" position_origin_a_phone=\"\" position_origin_a_last_edited=\"on|phone\" position_origin_f_tablet=\"\" position_origin_f_phone=\"\" position_origin_f_last_edited=\"on|phone\" position_origin_r_tablet=\"\" position_origin_r_phone=\"\" position_origin_r_last_edited=\"on|phone\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"visible\" overflow-y=\"visible\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" positioning_tablet=\"\" positioning_phone=\"none\" positioning_last_edited=\"on|phone\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" url=\"https://capitalbookkeepingco.com/\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"on|on|off\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.22.1\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>Mon-Thu: 10am-5pm, Fri-Sun: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"#FFFFFF\" overflow-x=\"visible\" overflow-y=\"visible\" custom_css_main_element=\"float:right;||\" custom_css_dropdown_container=\"width: 350px !important;\" custom_css_dropdown_links=\"width: 320px !important;\" global_colors_info=\"{}\" custom_css_dropdown_container_last_edited=\"on|phone\" custom_css_dropdown_container_tablet=\" \" custom_css_dropdown_links_last_edited=\"on|tablet\" custom_css_dropdown_links_phone=\" \" custom_css_dropdown_links_tablet=\" \" custom_css_dropdown_container_phone=\" \"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-2','','','2023-08-29 22:53:39','2023-08-29 22:53:39','',0,'https://capitalbookkeepingco.com/et_header_layout/theme-builder-layout-2/',0,'et_header_layout','',0),(159,1,'2021-12-16 19:38:38','2021-12-16 19:38:38','','Default Website Template','','publish','closed','closed','','default-website-template-2','','','2021-12-16 19:38:38','2021-12-16 19:38:38','',0,'https://capitalbookkeepingco.com/et_template/default-website-template-2/',0,'et_template','',0),(155,1,'2021-12-16 19:24:02','2021-12-16 19:24:02','','Default Website Template','','publish','closed','closed','','default-website-template','','','2021-12-16 19:24:02','2021-12-16 19:24:02','',0,'https://capitalbookkeepingco.com/et_template/default-website-template/',0,'et_template','',0),(162,1,'2021-12-16 19:40:02','2021-12-16 19:40:02','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]250-707-8290[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"2567 Rhinestone Rd, \" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf3c5;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]West Kelowna, BC V4T 2W1[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]M-F: 9am-5pm, S-S: Closed[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-16 19:40:02','2021-12-16 19:40:02','',152,'https://capitalbookkeepingco.com/?p=162',0,'revision','',0),(156,1,'2021-12-16 19:38:20','2021-12-16 19:38:20','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" sticky_enabled=\"0\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" inner_width=\"100%\" inner_max_width=\"100%\" padding_top_1=\"0px\" padding_right_1=\"0px\" padding_bottom_1=\"0px\" padding_left_1=\"0px\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" padding_top_2=\"0px\" padding_right_2=\"0px\" padding_bottom_2=\"0px\" padding_left_2=\"0px\" padding_top_bottom_link_2=\"true\" padding_left_right_link_2=\"true\" background_color=\"RGBA(255,255,255,0)\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" sticky_position=\"top\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Capital-Bookkeeping-Company1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" theme_builder_area=\"post_content\"][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_3,1_3,1_3\" theme_builder_area=\"post_content\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"0px||0px||true|false\" border_color_bottom=\"#0C71C3\" border_width_bottom=\"5px\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Call Now\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" url=\"tel:250-707-8290\" url_new_window=\"on\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_placement=\"left\" icon_color=\"#0C71C3\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\"]250-707-8290[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"2567 Rhinestone Rd, \" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" use_icon=\"on\" font_icon=\"&#xf3c5;||fa||900\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" icon_placement=\"left\" icon_color=\"#0C71C3\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\"]West Kelowna, BC V4T 2W1, Canada[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_blurb title=\"Working Hours\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" icon_placement=\"left\" icon_color=\"#0C71C3\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\"]	\nM-F: 9am-5pm, S-S: Closed[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"10px||0px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_menu _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" active_link_color=\"#0C71C3\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" custom_css_main_element=\"float:right;\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-16 19:38:20','2021-12-16 19:38:20','',152,'https://capitalbookkeepingco.com/?p=156',0,'revision','',0),(158,1,'2021-12-16 19:38:38','2021-12-16 19:38:38','','Theme Builder','','publish','closed','closed','','theme-builder','','','2021-12-16 19:38:38','2021-12-16 19:38:38','',0,'https://capitalbookkeepingco.com/et_theme_builder/theme-builder/',0,'et_theme_builder','',0),(163,1,'2021-12-16 19:40:24','2021-12-16 19:40:24','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"10px||||false|false\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]250-707-8290[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"2567 Rhinestone Rd, \" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf3c5;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]West Kelowna, BC V4T 2W1[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]M-F: 9am-5pm, S-S: Closed[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-16 19:40:24','2021-12-16 19:40:24','',152,'https://capitalbookkeepingco.com/?p=163',0,'revision','',0),(170,1,'2021-12-16 19:47:06','2021-12-16 19:47:06','','finance and accounting concept. business woman working on desk','finance and accounting concept. business woman working on desk','inherit','open','closed','','finance-and-accounting-concept-business-woman-working-on-desk','','','2021-12-16 19:47:06','2021-12-16 19:47:06','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk.jpg',0,'attachment','image/jpeg',0),(171,1,'2021-12-16 19:47:33','2021-12-16 19:47:33','https://capitalbookkeepingco.com/wp-content/uploads/2021/12/cropped-Capital-Bookkeeping-Company1.png','cropped-Capital-Bookkeeping-Company1.png','','inherit','open','closed','','cropped-capital-bookkeeping-company1-png','','','2021-12-16 19:47:33','2021-12-16 19:47:33','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/cropped-Capital-Bookkeeping-Company1.png',0,'attachment','image/png',0),(172,1,'2021-12-16 19:49:49','2021-12-16 19:49:49','','Accountant at work','Portrait of a young businesswoman working with papers in office','inherit','open','closed','','accountant-at-work','','','2021-12-16 19:49:49','2021-12-16 19:49:49','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter.jpg',0,'attachment','image/jpeg',0),(173,1,'2021-12-16 19:53:01','2021-12-16 19:53:01','','Forex Trade Graph Chart Concept','Forex Trade Graph Chart Concept','inherit','open','closed','','forex-trade-graph-chart-concept','','','2021-12-16 19:53:01','2021-12-16 19:53:01','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/forex-trade-graph-chart-concept.jpg',0,'attachment','image/jpeg',0),(174,1,'2021-12-16 19:56:55','2021-12-16 19:56:55','','Stock Exchange Trading Forex Finance Graphic Concept','Stock Exchange Trading Forex Finance Graphic Concept','inherit','open','closed','','stock-exchange-trading-forex-finance-graphic-concept','','','2021-12-16 19:56:55','2021-12-16 19:56:55','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/stock-exchange-trading-forex-finance-graphic-concept.jpg',0,'attachment','image/jpeg',0),(165,1,'2021-12-16 19:41:32','2021-12-16 19:41:32','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" hover_enabled=\"0\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" sticky_enabled=\"0\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"10px||||false|false\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]250-707-8290[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"2567 Rhinestone Rd, \" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf3c5;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]West Kelowna, BC V4T 2W1[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]M-F: 9am-5pm, S-S: Closed[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-16 19:41:32','2021-12-16 19:41:32','',152,'https://capitalbookkeepingco.com/?p=165',0,'revision','',0),(167,1,'2021-12-16 19:43:43','2021-12-16 19:43:43','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" hover_enabled=\"0\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" sticky_enabled=\"0\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"10px||||false|false\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]250-707-8290[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"2567 Rhinestone Rd, \" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf3c5;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]West Kelowna, BC V4T 2W1[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]M-F: 9am-5pm, S-S: Closed[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" hover_enabled=\"0\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\" show_search_icon=\"on\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-16 19:43:43','2021-12-16 19:43:43','',152,'https://capitalbookkeepingco.com/?p=167',0,'revision','',0),(381,1,'2022-01-16 15:24:24','2022-01-16 15:24:24','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.6\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" position_origin_a_tablet=\"\" position_origin_a_phone=\"\" position_origin_a_last_edited=\"on|phone\" position_origin_f_tablet=\"\" position_origin_f_phone=\"\" position_origin_f_last_edited=\"on|phone\" position_origin_r_tablet=\"\" position_origin_r_phone=\"\" position_origin_r_last_edited=\"on|phone\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" hover_enabled=\"0\" positioning_tablet=\"\" positioning_phone=\"none\" positioning_last_edited=\"on|phone\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" positioning=\"none\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" url=\"https://capitalbookkeepingco.com/\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-16 15:24:24','2022-01-16 15:24:24','',152,'https://capitalbookkeepingco.com/?p=381',0,'revision','',0),(177,1,'2021-12-16 20:04:09','2021-12-16 20:04:09','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]250-707-8290[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"2567 Rhinestone Rd, \" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf3c5;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]West Kelowna, BC V4T 2W1[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]M-F: 9am-5pm, S-S: Closed[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-16 20:04:09','2021-12-16 20:04:09','',152,'https://capitalbookkeepingco.com/?p=177',0,'revision','',0),(183,1,'2021-12-16 20:07:15','2021-12-16 20:07:15','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" hover_enabled=\"0\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" overflow-x=\"hidden\" overflow-y=\"hidden\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" hover_enabled=\"0\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]250-707-8290[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"2567 Rhinestone Rd, \" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf3c5;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]West Kelowna, BC V4T 2W1[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]M-F: 9am-5pm, S-S: Closed[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-16 20:07:15','2021-12-16 20:07:15','',152,'https://capitalbookkeepingco.com/?p=183',0,'revision','',0),(181,1,'2021-12-16 20:06:17','2021-12-16 20:06:17','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" hover_enabled=\"0\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" overflow-x=\"hidden\" overflow-y=\"hidden\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]250-707-8290[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"2567 Rhinestone Rd, \" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf3c5;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]West Kelowna, BC V4T 2W1[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]M-F: 9am-5pm, S-S: Closed[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-16 20:06:17','2021-12-16 20:06:17','',152,'https://capitalbookkeepingco.com/?p=181',0,'revision','',0),(179,1,'2021-12-16 20:05:16','2021-12-16 20:05:16','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\" hover_enabled=\"0\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"]250-707-8290[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"2567 Rhinestone Rd, \" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf3c5;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"]West Kelowna, BC V4T 2W1[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"]M-F: 9am-5pm, S-S: Closed[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" hover_enabled=\"0\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\" background_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-16 20:05:16','2021-12-16 20:05:16','',152,'https://capitalbookkeepingco.com/?p=179',0,'revision','',0),(207,1,'2021-12-28 20:02:50','2021-12-28 20:02:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping Co\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#dbdbdb\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"60%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Who We Are</h2>\n<div>\n<p>Our Mission is to provide our clients with superior accounting and related services that satisfies their needs and improves their quality of life; and to provide employees and owners with meaningful careers that include flexibility and opportunities for success – all while being a good corporate citizen.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#dbdbdb\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/forex-trade-graph-chart-concept-scaled.jpg\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">At Your Service</h2>\n<div>\n<p>RHN is a full-service accounting firm that can meet all your diverse and unique accounting needs. Our highly trained professionals will give you the quality service and expertise that you deserve.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#dbdbdb\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"15%\" background_color_gradient_end_position=\"35%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/stock-exchange-trading-forex-finance-graphic-concept-scaled.jpg\" background_size=\"contain\" background_position=\"center_left\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Culture</h2>\n<div>\n<p>RHN is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2021-12-28 20:02:50','2021-12-28 20:02:50','',89,'https://capitalbookkeepingco.com/?p=207',0,'revision','',0),(176,1,'2021-12-16 20:00:06','2021-12-16 20:00:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping Co\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"finance and accounting concept. business woman working on desk\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" sticky_enabled=\"0\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Accountant at work\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#dbdbdb\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"60%\" background_color_gradient_overlays_image=\"on\" sticky_enabled=\"0\" custom_padding=\"100px||100px||true|false\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Who We Are</h2>\n<div>\n<p>Our Mission is to provide our clients with superior accounting and related services that satisfies their needs and improves their quality of life; and to provide employees and owners with meaningful careers that include flexibility and opportunities for success – all while being a good corporate citizen.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Locations</h2>\n<div>\n<p>Whether you live and work in the Lower Mainland or you are enjoying the wide open spaces of the Okanagan, RHN has your accounting needs covered. Every location is different and the needs of our clients vary. We are confident we meet the<span> </span><g class=\"gr_ gr_9 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace\" id=\"9\" data-gr-id=\"9\">ever changing</g><span> </span>needs of our clients no matter the community you call home.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Location 1\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Location 2\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Location 3\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Location 4\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"100px||100px||true|false\" sticky_enabled=\"0\" title_text=\"Forex Trade Graph Chart Concept\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/forex-trade-graph-chart-concept-scaled.jpg\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#dbdbdb\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\" background_color_gradient_overlays_image=\"on\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">At Your Service</h2>\n<div>\n<p>RHN is a full-service accounting firm that can meet all your diverse and unique accounting needs. Our highly trained professionals will give you the quality service and expertise that you deserve.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#dbdbdb\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"15%\" background_color_gradient_end_position=\"35%\" title_text=\"Stock Exchange Trading Forex Finance Graphic Concept\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/stock-exchange-trading-forex-finance-graphic-concept-scaled.jpg\" background_color_gradient_overlays_image=\"on\" background_size=\"contain\" background_position=\"center_left\" sticky_enabled=\"0\" custom_padding=\"100px||100px||true|false\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Culture</h2>\n<div>\n<p>RHN is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2021-12-16 20:00:06','2021-12-16 20:00:06','',89,'https://capitalbookkeepingco.com/?p=176',0,'revision','',0),(206,1,'2021-12-28 20:00:20','2021-12-28 20:00:20','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" hover_enabled=\"0\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" sticky_enabled=\"0\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" sticky_enabled=\"0\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-28 20:00:20','2021-12-28 20:00:20','',152,'https://capitalbookkeepingco.com/?p=206',0,'revision','',0),(185,1,'2021-12-16 20:13:33','2021-12-16 20:13:33','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.83) 20%|rgba(0,0,0,0.83) 45%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.83)\" background_color_gradient_start_position=\"20%\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_end_position=\"45%\" background_enable_image=\"off\" positioning=\"none\" custom_margin=\"||0px||false|false\" custom_padding=\"||5px||false|false\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form email=\"brentonscottsmith@gmail.com,info@capitalbookkeepingco.com,capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name:%%Name%%||et_pb_line_break_holder||Contact No: %%mobile%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.22.1\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.16\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/Capital-Bookkeeping-Co-826640307692771\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Monday-Thursday: 10am-5pm\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.22.1\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner disabled_on=\"on|on|off\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.16\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout','','','2023-08-30 16:56:37','2023-08-30 16:56:37','',0,'https://capitalbookkeepingco.com/et_footer_layout/theme-builder-layout/',0,'et_footer_layout','',0),(187,1,'2021-12-16 20:13:46','2021-12-16 20:13:46','','Default Website Template','','publish','closed','closed','','default-website-template-3','','','2021-12-16 20:13:46','2021-12-16 20:13:46','',0,'https://capitalbookkeepingco.com/et_template/default-website-template-3/',0,'et_template','',0),(189,1,'2021-12-16 20:23:04','2021-12-16 20:23:04','','Shopping and budgeting financial concept','Shopping and budgeting financial concept','inherit','open','closed','','shopping-and-budgeting-financial-concept','','','2021-12-16 20:23:04','2021-12-16 20:23:04','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg',0,'attachment','image/jpeg',0),(194,1,'2021-12-16 20:40:09','2021-12-16 20:40:09','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Contact\" allowed_symbols=\"numbers\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar _builder_version=\"4.14.2\" _module_preset=\"default\" area=\"et_pb_widget_area_1\" background_layout=\"dark\" header_text_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"left\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#00aced\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2021-12-16 20:40:09','2021-12-16 20:40:09','',185,'https://capitalbookkeepingco.com/?p=194',0,'revision','',0),(191,1,'2021-12-16 20:37:21','2021-12-16 20:37:21','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" title_text=\"Shopping and budgeting financial concept\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_overlays_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" border_width_top=\"2px\" border_color_top=\"#0C71C3\"][et_pb_column type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" header_3_font=\"|700|||||||\" header_3_text_color=\"#FFFFFF\" header_3_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"||0px||false|false\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" captcha_text_color=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" field_id=\"mobile\" field_title=\"Contact\" allowed_symbols=\"numbers\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" fullwidth_field=\"on\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" conditional_logic_relation=\"on\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" theme_builder_area=\"post_content\"][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\" border_color_bottom=\"#0C71C3\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" header_3_font=\"|700|||||||\" header_3_text_color=\"#0C71C3\" header_3_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3>Recent Blog</h3>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_3_font=\"|700|||||||\" header_3_text_color=\"#0C71C3\" header_3_text_align=\"left\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_orientation=\"left\"][et_pb_social_media_follow_network social_network=\"facebook\" background_color=\"#3b5998\" _builder_version=\"4.14.2\" _module_preset=\"default\" follow_button=\"off\" url_new_window=\"on\" theme_builder_area=\"post_content\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" background_color=\"#00aced\" _builder_version=\"4.14.2\" _module_preset=\"default\" follow_button=\"off\" url_new_window=\"on\" theme_builder_area=\"post_content\"]twitter[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" url=\"tel:250-707-8290\" link_option_url=\"tel:250-707-8290\" url_new_window=\"on\" link_option_url_new_window=\"on\" icon_color=\"#0C71C3\" icon_placement=\"left\" hover_enabled=\"0\" sticky_enabled=\"0\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" url=\"tel:250-707-8290\" link_option_url=\"tel:250-707-8290\" url_new_window=\"on\" link_option_url_new_window=\"on\" icon_color=\"#0C71C3\" icon_placement=\"left\" hover_enabled=\"0\" sticky_enabled=\"0\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_menu _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"RGBA(255,255,255,0)\" menu_style=\"centered\" menu_text_color=\"#FFFFFF\" active_link_color=\"#0C71C3\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_layout=\"dark\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2021-12-16 20:37:21','2021-12-16 20:37:21','',185,'https://capitalbookkeepingco.com/?p=191',0,'revision','',0),(190,1,'2021-12-16 20:36:59','2021-12-16 20:36:59','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" title_text=\"Shopping and budgeting financial concept\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_overlays_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\"][et_pb_column type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" header_3_font=\"|700|||||||\" header_3_text_color=\"#FFFFFF\" header_3_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"||0px||false|false\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" captcha_text_color=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" field_id=\"mobile\" field_title=\"Contact\" allowed_symbols=\"numbers\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" fullwidth_field=\"on\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" conditional_logic_relation=\"on\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" theme_builder_area=\"post_content\"][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\" border_color_bottom=\"#0C71C3\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_orientation=\"center\" header_3_font=\"|700|||||||\" header_3_text_color=\"#0C71C3\" header_3_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3>Recent Blog</h3>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_3_font=\"|700|||||||\" header_3_text_color=\"#0C71C3\" header_3_text_align=\"left\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_orientation=\"left\"][et_pb_social_media_follow_network social_network=\"facebook\" background_color=\"#3b5998\" _builder_version=\"4.14.2\" _module_preset=\"default\" follow_button=\"off\" url_new_window=\"on\" theme_builder_area=\"post_content\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" background_color=\"#00aced\" _builder_version=\"4.14.2\" _module_preset=\"default\" follow_button=\"off\" url_new_window=\"on\" theme_builder_area=\"post_content\"]twitter[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" url=\"tel:250-707-8290\" link_option_url=\"tel:250-707-8290\" url_new_window=\"on\" link_option_url_new_window=\"on\" icon_color=\"#0C71C3\" icon_placement=\"left\" hover_enabled=\"0\" sticky_enabled=\"0\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" url=\"tel:250-707-8290\" link_option_url=\"tel:250-707-8290\" url_new_window=\"on\" link_option_url_new_window=\"on\" icon_color=\"#0C71C3\" icon_placement=\"left\" hover_enabled=\"0\" sticky_enabled=\"0\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_menu _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"RGBA(255,255,255,0)\" menu_style=\"centered\" menu_text_color=\"#FFFFFF\" active_link_color=\"#0C71C3\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_layout=\"dark\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2021-12-16 20:36:59','2021-12-16 20:36:59','',185,'https://capitalbookkeepingco.com/?p=190',0,'revision','',0),(195,1,'2021-12-16 20:40:14','2021-12-16 20:40:14','','Default Website Template','','publish','closed','closed','','default-website-template-4','','','2021-12-16 20:40:14','2021-12-16 20:40:14','',0,'https://capitalbookkeepingco.com/et_template/default-website-template-4/',0,'et_template','',0),(196,1,'2021-12-16 20:43:44','2021-12-16 20:43:44','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" hover_enabled=\"0\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\" custom_padding=\"||5px||false|false\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Contact\" allowed_symbols=\"numbers\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"left\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#00aced\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"5px||5px||true|false\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2021-12-16 20:43:44','2021-12-16 20:43:44','',185,'https://capitalbookkeepingco.com/?p=196',0,'revision','',0),(198,1,'2021-12-16 20:44:09','2021-12-16 20:44:09','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" hover_enabled=\"0\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\" custom_padding=\"||5px||false|false\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Contact\" allowed_symbols=\"numbers\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"left\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#00aced\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\" custom_padding=\"10px||10px||true|false\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"5px||5px||true|false\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2021-12-16 20:44:09','2021-12-16 20:44:09','',185,'https://capitalbookkeepingco.com/?p=198',0,'revision','',0),(200,1,'2021-12-17 16:40:51','2021-12-17 16:40:51','','Website - Bookkeeper (2)','','inherit','open','closed','','website-bookkeeper-2','','','2021-12-17 16:40:51','2021-12-17 16:40:51','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg',0,'attachment','image/jpeg',0),(490,1,'2022-03-10 01:08:17','2022-03-10 01:08:17','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" use_redirect=\"on\" redirect_url=\"/thank-you/\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" align=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Join Us</h4>\n<h2>Our clients relay on us to have integrity and transparency.</h2>\n&nbsp;[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.14.2\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-120px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" global_colors_info=\"{}\"]<h3>Trustworthy</h3>\n<p><span>Without trust we don’t truly collaborate; we merely coordinate or, at best, cooperate.  It is trust that transforms a group of people into a team.”  We would like you to join our team.</span></p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 40 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2022-03-10 01:08:17','2022-03-10 01:08:17','',8,'https://capitalbookkeepingco.com/?p=490',0,'revision','',0),(202,1,'2021-12-17 16:47:06','2021-12-17 16:47:06','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" use_redirect=\"on\" redirect_url=\"/thank-you/\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" align=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Join Us</h4>\n<h2>Our clients relay on us to have integrity and transparency.</h2>\n&nbsp;[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.14.2\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-120px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Trustworthy</h3>\n<p><span>Without trust we don’t truly collaborate; we merely coordinate or, at best, cooperate.  It is trust that transforms a group of people into a team.”  We would like you to join our team.</span></p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 40 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-17 16:47:06','2021-12-17 16:47:06','',8,'https://capitalbookkeepingco.com/?p=202',0,'revision','',0),(201,1,'2021-12-17 16:46:38','2021-12-17 16:46:38','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.14.2\" background_color=\"#084666\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(12,0,0,0.42)\" background_color_gradient_end=\"rgba(8,70,102,0.72)\" background_color_gradient_direction=\"170deg\" background_color_gradient_start_position=\"1%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Co.jpg\" custom_padding=\"|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|27px|0px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"Open Sans|800|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"dark\" max_width=\"600px\" custom_margin=\"|||\" custom_margin_tablet=\"|100px||\" custom_margin_phone=\"|30px||\" custom_margin_last_edited=\"off|desktop\" header_font_size_tablet=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height_tablet=\"\" header_line_height_phone=\"\" header_line_height_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1-300x73.png\" alt=\"\" class=\"wp-image-52 alignnone size-medium\" width=\"300\" height=\"73\" /></h1>\n<h1>Capital Bookkeeping  You Can Rely On Us!</h1>[/et_pb_text][et_pb_button button_url=\"tel:250-707-8290\" url_new_window=\"on\" button_text=\"Call Now 250-707-8290\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" email=\"capitalbookkeepingcompany@gmail.com\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Company: %%Company%%||et_pb_line_break_holder||Subject: %%Subject%%||et_pb_line_break_holder||Message:%%Message%%\" use_redirect=\"on\" redirect_url=\"/thank-you/\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.14.2\" _unique_id=\"c95ee78b-1e44-4972-bca3-49ff4143d87d\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#ffffff\" title_font=\"||||||||\" form_field_font=\"Open Sans||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"2em\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#ffffff\" button_bg_color=\"#0C71C3\" button_border_width=\"10px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" custom_margin=\"|||\" custom_margin_tablet=\"|||0px\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|40px||\" custom_padding_phone=\"|40px||\" custom_padding_last_edited=\"off|desktop\" border_radii=\"on|2px|2px|2px|2px\" border_width_all=\"2px\" border_color_all=\"rgba(255,255,255,0.3)\" form_background_color=\"rgba(0,0,0,0)\" locked=\"off\" global_colors_info=\"{}\" button_bg_color_hover=\"#00e2c4\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||30px|\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" align=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" background_color_gradient_direction=\"90deg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.25\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_04.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_03.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_02.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/logo_01.png\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#f6f8fa\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" _builder_version=\"3.25\" background_color=\"#084666\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-38.png\" custom_margin=\"-80px||30px|\" custom_margin_tablet=\"0px|||\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4>Join Us</h4>\n<h2>Our clients relay on us to have integrity and transparency.</h2>\n&nbsp;[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#4e7c97\" bg_img_1=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-39.png\" padding_top_bottom_link_1=\"true\" padding_left_right_link_1=\"true\" use_background_color_gradient_1=\"off\" background_color_gradient_start_1=\"#f6f8fa\" background_color_gradient_end_1=\"#00324e\" background_color_gradient_end_position_1=\"70%\" padding_top_1=\"80px\" padding_right_1=\"6%\" padding_bottom_1=\"80px\" padding_left_1=\"6%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|desktop\" admin_label=\"Contact\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f6f8fa\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0|0px|0|0px|false|false\" make_fullwidth=\"on\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_color=\"#4e7c97\" background_color_gradient_start=\"#f6f8fa\" background_color_gradient_end=\"#00324e\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" quote_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" background_layout=\"dark\" custom_margin=\"||50px|\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_last_edited=\"off|desktop\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"||10px|10px|\" locked=\"off\" global_colors_info=\"{}\"]<h2>Contact Us</h2>\n<p>&nbsp;</p>[/et_pb_text][et_pb_blurb title=\"Email\" url=\"mailto:capitalbookkeepingcompany@gmail.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe076;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"mailto:capitalbookkeepingcompany@gmail.com\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe090;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#ffffff\" icon_placement=\"left\" image_icon_width=\"20px\" content_max_width=\"1100px\" _builder_version=\"4.14.2\" header_font=\"Montserrat|500|||||||\" header_font_size=\"16px\" header_line_height=\"1.5em\" body_font=\"||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" background_layout=\"dark\" custom_margin=\"||20px|\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||0px\" custom_margin_last_edited=\"off|desktop\" animation=\"off\" icon_font_size=\"20px\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.14.2\" custom_margin=\"||||false|false\" custom_margin_tablet=\"-120px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#4e7c97\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Trustworthy</h3>\n<p><span>Without trust we don’t truly collaborate; we merely coordinate or, at best, cooperate.  It is trust that transforms a group of people into a team.”  We would like you to join our team.</span></p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Open Sans|700|||||||\" header_3_line_height=\"1.6em\" background_color=\"#a2b0c1\" background_layout=\"dark\" custom_margin=\"|||\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"fold\" animation_direction=\"top\" animation_delay=\"200ms\" global_colors_info=\"{}\"]<h3>Experienced</h3>\n<p>We have over 40 years experience in helping our clients with bookkeeping, payroll and industry experience</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Professional Bookkeepers','','inherit','closed','closed','','8-revision-v1','','','2021-12-17 16:46:38','2021-12-17 16:46:38','',8,'https://capitalbookkeepingco.com/?p=201',0,'revision','',0),(212,1,'2021-12-28 20:07:57','2021-12-28 20:07:57','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-28 20:07:57','2021-12-28 20:07:57','',152,'https://capitalbookkeepingco.com/?p=212',0,'revision','',0),(209,1,'2021-12-28 20:04:59','2021-12-28 20:04:59','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"2567 Rhinestone Rd,\" url=\"https://goo.gl/maps/FB37urrjtQJPsf6t6\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe081;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/FB37urrjtQJPsf6t6\" link_option_url_new_window=\"on\" hover_enabled=\"0\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>West Kelowna, BC V4T 2W1, </p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-28 20:04:59','2021-12-28 20:04:59','',152,'https://capitalbookkeepingco.com/?p=209',0,'revision','',0),(215,1,'2021-12-28 20:17:57','2021-12-28 20:17:57','[et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','section 1','','publish','closed','closed','','section-1','','','2021-12-28 20:17:57','2021-12-28 20:17:57','',0,'https://capitalbookkeepingco.com/et_pb_layout/section-1/',0,'et_pb_layout','',0),(216,1,'2021-12-28 20:18:11','2021-12-28 20:18:11','[et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" align=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','section 2','','publish','closed','closed','','section-2','','','2021-12-28 20:18:11','2021-12-28 20:18:11','',0,'https://capitalbookkeepingco.com/et_pb_layout/section-2/',0,'et_pb_layout','',0),(217,1,'2021-12-28 20:19:16','2021-12-28 20:19:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping Co\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#dbdbdb\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"60%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Who We Are</h2>\n<div>\n<p>Our Mission is to provide our clients with superior accounting and related services that satisfies their needs and improves their quality of life; and to provide employees and owners with meaningful careers that include flexibility and opportunities for success – all while being a good corporate citizen.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#dbdbdb\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/forex-trade-graph-chart-concept-scaled.jpg\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">At Your Service</h2>\n<div>\n<p>RHN is a full-service accounting firm that can meet all your diverse and unique accounting needs. Our highly trained professionals will give you the quality service and expertise that you deserve.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#dbdbdb\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"15%\" background_color_gradient_end_position=\"35%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/stock-exchange-trading-forex-finance-graphic-concept-scaled.jpg\" background_size=\"contain\" background_position=\"center_left\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Culture</h2>\n<div>\n<p>RHN is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','homepage','','publish','closed','closed','','homepage','','','2021-12-28 20:19:16','2021-12-28 20:19:16','',0,'https://capitalbookkeepingco.com/et_pb_layout/homepage/',0,'et_pb_layout','',0),(227,1,'2021-12-29 21:21:19','2021-12-29 21:21:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"We Handle Your Finances \" subhead=\"So You Can Run Your Business\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.4\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2021-12-29 21:21:19','2021-12-29 21:21:19','',89,'https://capitalbookkeepingco.com/?p=227',0,'revision','',0),(219,1,'2021-12-29 15:15:49','2021-12-29 15:15:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"We Handle Your Finances \" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" subhead=\"So You Can Run Your Business\" subhead_font_size=\"25px\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Capital Bookkeeping Company\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2021-12-29 15:15:49','2021-12-29 15:15:49','',89,'https://capitalbookkeepingco.com/?p=219',0,'revision','',0),(218,1,'2021-12-28 20:19:45','2021-12-28 20:19:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping Co\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Website-Bookkeeper-2.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/calculator-g07b5bc4da_640.jpg\" title_text=\"calculator-g07b5bc4da_640\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" align=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\" theme_builder_area=\"post_content\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2021-12-28 20:19:45','2021-12-28 20:19:45','',89,'https://capitalbookkeepingco.com/?p=218',0,'revision','',0),(268,1,'2022-01-10 18:59:10','2022-01-10 18:59:10','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-10 18:59:10','2022-01-10 18:59:10','',152,'https://capitalbookkeepingco.com/?p=268',0,'revision','',0),(220,1,'2021-12-29 15:15:49','2021-12-29 15:15:49','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"et_header_layout\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company1.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.4\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"et_header_layout\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.4\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2021-12-29 15:15:49','2021-12-29 15:15:49','',152,'https://capitalbookkeepingco.com/?p=220',0,'revision','',0),(221,1,'2021-12-29 21:19:54','2021-12-29 21:19:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/uC.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section]','Coming Soon','','draft','closed','closed','','coming-soon','','','2022-03-11 14:10:02','2022-03-11 14:10:02','',0,'https://capitalbookkeepingco.com/?page_id=221',0,'page','',0),(222,1,'2021-12-29 21:15:30','2021-12-29 21:15:30','','Coming Soon','','inherit','closed','closed','','221-revision-v1','','','2021-12-29 21:15:30','2021-12-29 21:15:30','',221,'https://capitalbookkeepingco.com/?p=222',0,'revision','',0),(224,1,'2021-12-29 21:19:35','2021-12-29 21:19:35','','uC','','inherit','open','closed','','uc','','','2021-12-29 21:19:35','2021-12-29 21:19:35','',221,'https://capitalbookkeepingco.com/wp-content/uploads/2021/12/uC.jpg',0,'attachment','image/jpeg',0),(494,1,'2022-03-11 14:10:00','2022-03-11 14:10:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header header_fullscreen=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/uC.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section]','Coming Soon','','inherit','closed','closed','','221-revision-v1','','','2022-03-11 14:10:00','2022-03-11 14:10:00','',221,'https://capitalbookkeepingco.com/?p=494',0,'revision','',0),(225,1,'2021-12-29 21:19:54','2021-12-29 21:19:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.14.4\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header _builder_version=\"4.14.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"uC\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/uC.jpg\" header_fullscreen=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','Coming Soon','','inherit','closed','closed','','221-revision-v1','','','2021-12-29 21:19:54','2021-12-29 21:19:54','',221,'https://capitalbookkeepingco.com/?p=225',0,'revision','',0),(292,1,'2022-01-10 21:59:10','2022-01-10 21:59:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"payroll\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"First Nation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Starta Corp\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Profit\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Wineries & Vinyards\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal, Trust & Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Resident\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Book Keeping\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal Real Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-10 21:59:10','2022-01-10 21:59:10','',94,'https://capitalbookkeepingco.com/?p=292',0,'revision','',0),(282,1,'2022-01-10 19:27:18','2022-01-10 19:27:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"150px||150px||true|false\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Businesses\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"First Nation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Starta Corp\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Profit\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Wineries & Vinyards\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal, Trust & Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non Resident\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Book Keeping\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Personal Real Estate\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Tax\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-10 19:27:18','2022-01-10 19:27:18','',94,'https://capitalbookkeepingco.com/?p=282',0,'revision','',0),(283,1,'2022-01-10 19:28:36','2022-01-10 19:28:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Reviews\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/review-geae8de4df_1280.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" sticky_enabled=\"0\"]<h3>Read what our clients have to say</h3>\n<p>[brb_collection id=\"235\"]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Reviews','','inherit','closed','closed','','237-revision-v1','','','2022-01-10 19:28:36','2022-01-10 19:28:36','',237,'https://capitalbookkeepingco.com/?p=283',0,'revision','',0),(376,1,'2022-01-16 15:07:58','2022-01-16 15:07:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Reviews\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/review-geae8de4df_1280.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Read what our clients have to say</h3>\n<p>[brb_collection id=\"235\"]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Reviews','','inherit','closed','closed','','237-revision-v1','','','2022-01-16 15:07:58','2022-01-16 15:07:58','',237,'https://capitalbookkeepingco.com/?p=376',0,'revision','',0),(284,1,'2022-01-10 19:29:01','2022-01-10 19:29:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Reviews\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/review-geae8de4df_1280.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_url=\"/contact-us/\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" sticky_enabled=\"0\"]<h3>Read what our clients have to say</h3>\n<p>[brb_collection id=\"235\"]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Reviews','','inherit','closed','closed','','237-revision-v1','','','2022-01-10 19:29:01','2022-01-10 19:29:01','',237,'https://capitalbookkeepingco.com/?p=284',0,'revision','',0),(286,1,'2022-01-10 19:34:11','2022-01-10 19:34:11','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" hover_enabled=\"0\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" positioning_last_edited=\"on|phone\" position_origin_a_last_edited=\"on|phone\" position_origin_f_last_edited=\"on|phone\" position_origin_r_last_edited=\"on|phone\" positioning_phone=\"none\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" url=\"https://capitalbookkeepingco.com/\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" hover_enabled=\"0\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" disabled_on=\"on|on|off\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-10 19:34:11','2022-01-10 19:34:11','',152,'https://capitalbookkeepingco.com/?p=286',0,'revision','',0),(231,1,'2022-01-07 17:11:05','2022-01-07 17:11:05','','bookkeeper','','inherit','open','closed','','bookkeeper','','','2022-01-07 17:11:05','2022-01-07 17:11:05','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg',0,'attachment','image/jpeg',0),(232,1,'2022-01-07 17:11:14','2022-01-07 17:11:14','','calculate','','inherit','open','closed','','calculate','','','2022-01-07 17:11:14','2022-01-07 17:11:14','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg',0,'attachment','image/jpeg',0),(254,1,'2022-01-10 18:08:05','2022-01-10 18:08:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"We Handle Your Finances \" subhead=\"So You Can Run Your Business\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"150px||150px||true|false\" sticky_enabled=\"0\" title_text=\"Capital-Bookkeeping--b&W\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-10 18:08:05','2022-01-10 18:08:05','',89,'https://capitalbookkeepingco.com/?p=254',0,'revision','',0);
INSERT INTO `wpvu_posts` VALUES (233,1,'2022-01-07 17:11:41','2022-01-07 17:11:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"We Handle Your Finances \" subhead=\"So You Can Run Your Business\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.4\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"bookkeeper\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-07 17:11:41','2022-01-07 17:11:41','',89,'https://capitalbookkeepingco.com/?p=233',0,'revision','',0),(235,1,'2022-01-10 19:31:20','2022-01-10 19:31:20','{\"connections\":[{\"props\":{\"root_account\":\"102026661504209332974\",\"place_id\":\"ChIJMeOz718LglQRrjYQjfJGU0w\",\"default_photo\":\"https://lh3.googleusercontent.com/a/default-user=s132\"},\"id\":\"accounts/102026661504209332974/locations/3656234503463378443\",\"address\":\"West Kelowna\",\"photo\":\"https://lh3.googleusercontent.com/a/default-user=s132\",\"name\":\"Capital Bookkeeping Company\",\"platform\":\"google\"}],\"options\":{\"summary_rating\":false,\"summary_photo\":\"\",\"summary_name\":\"\",\"summary_url\":\"\",\"header_hide_photo\":false,\"header_hide_name\":false,\"header_hide_count\":false,\"header_hide_seeall\":true,\"header_hide_write\":false,\"header_merge_social\":true,\"header_hide_social\":false,\"view_mode\":\"grid2\",\"sort\":\"1\",\"min_filter\":\"4\",\"top_reviews\":\"\",\"word_filter\":\"\",\"word_exclude\":\"\",\"pagination\":\"\",\"min_letter\":\"\",\"text_size\":\"\",\"time_format\":\"\",\"hide_avatar\":false,\"hide_name\":false,\"disable_review_time\":true,\"disable_user_link\":true,\"short_last_name\":true,\"flash_pos\":\"left\",\"flash_start\":\"\",\"flash_visible\":\"\",\"flash_invisible\":\"\",\"flash_user_photo\":false,\"flash_hide_logo\":false,\"badge_click\":\"sidebar\",\"badge_space_between\":\"\",\"badge_display_block\":true,\"badge_center\":true,\"badge_close\":true,\"hide_float_badge\":false,\"slider_effect\":\"slide\",\"slider_speed\":\"\",\"slider_count\":\"\",\"slider_space_between\":\"\",\"slider_review_height\":\"\",\"slider_hide_pagin\":false,\"slider_hide_nextprev\":false,\"slider_desktop_breakpoint\":\"\",\"slider_desktop_count\":\"\",\"slider_tablet_breakpoint\":\"\",\"slider_tablet_count\":\"\",\"slider_mobile_breakpoint\":\"\",\"slider_mobile_count\":\"\",\"rating_temp_on\":false,\"rating_temp\":\"\",\"review_temp_on\":false,\"review_temp\":\"\",\"schema_rating\":\"\",\"schema_address_street\":\"\",\"schema_address_locality\":\"\",\"schema_address_region\":\"\",\"schema_address_zip\":\"\",\"schema_address_country\":\"\",\"schema_price_range\":\"\",\"schema_phone\":\"\",\"dark_theme\":false,\"centred\":true,\"max_width\":\"\",\"max_height\":\"\",\"open_link\":true,\"nofollow_link\":true,\"lazy_load_img\":true,\"google_success_api\":true,\"google_def_rev_link\":false,\"fb_success_api\":true,\"fb_rating_calc\":false,\"reviewer_avatar_size\":\"56\",\"cache\":\"12\",\"google_api_limit\":\"\",\"fb_api_limit\":\"\",\"reviews_limit\":\"\"}}','review page','','publish','closed','closed','','review-page','','','2022-01-10 19:31:20','2022-01-10 19:31:20','',0,'https://capitalbookkeepingco.com/brb_collection/review-page/',0,'brb_collection','',0),(236,1,'2022-01-22 19:40:22','2022-01-22 19:40:22','{\"connections\":[{\"props\":{\"root_account\":\"102026661504209332974\",\"place_id\":\"ChIJMeOz718LglQRrjYQjfJGU0w\",\"default_photo\":\"https://lh3.googleusercontent.com/a/default-user=s132\"},\"id\":\"accounts/102026661504209332974/locations/3656234503463378443\",\"address\":\"West Kelowna\",\"photo\":\"https://lh3.googleusercontent.com/a/default-user=s132\",\"name\":\"Capital Bookkeeping Company\",\"platform\":\"google\"}],\"options\":{\"summary_rating\":false,\"summary_photo\":\"\",\"summary_name\":\"\",\"summary_url\":\"\",\"header_hide_photo\":false,\"header_hide_name\":false,\"header_hide_count\":false,\"header_hide_seeall\":false,\"header_hide_write\":false,\"header_merge_social\":false,\"header_hide_social\":true,\"view_mode\":\"slider\",\"sort\":\"1\",\"min_filter\":\"4\",\"top_reviews\":\"\",\"word_filter\":\"\",\"word_exclude\":\"\",\"pagination\":\"\",\"min_letter\":\"\",\"text_size\":\"\",\"time_format\":\"\",\"hide_avatar\":false,\"hide_name\":false,\"disable_review_time\":true,\"disable_user_link\":true,\"short_last_name\":true,\"flash_pos\":\"left\",\"flash_start\":\"\",\"flash_visible\":\"\",\"flash_invisible\":\"\",\"flash_user_photo\":false,\"flash_hide_logo\":false,\"badge_click\":\"sidebar\",\"badge_space_between\":\"\",\"badge_display_block\":false,\"badge_center\":false,\"badge_close\":false,\"hide_float_badge\":false,\"slider_effect\":\"slide\",\"slider_speed\":\"\",\"slider_count\":\"1\",\"slider_space_between\":\"\",\"slider_review_height\":\"\",\"slider_hide_pagin\":false,\"slider_hide_nextprev\":false,\"slider_desktop_breakpoint\":\"\",\"slider_desktop_count\":\"1\",\"slider_tablet_breakpoint\":\"\",\"slider_tablet_count\":\"\",\"slider_mobile_breakpoint\":\"\",\"slider_mobile_count\":\"\",\"rating_temp_on\":false,\"rating_temp\":\"\",\"review_temp_on\":false,\"review_temp\":\"\",\"schema_rating\":\"\",\"schema_address_street\":\"\",\"schema_address_locality\":\"\",\"schema_address_region\":\"\",\"schema_address_zip\":\"\",\"schema_address_country\":\"\",\"schema_price_range\":\"\",\"schema_phone\":\"\",\"dark_theme\":false,\"centred\":false,\"max_width\":\"\",\"max_height\":\"\",\"open_link\":true,\"nofollow_link\":true,\"lazy_load_img\":true,\"google_success_api\":true,\"google_def_rev_link\":false,\"fb_success_api\":true,\"fb_rating_calc\":false,\"reviewer_avatar_size\":\"56\",\"cache\":\"12\",\"google_api_limit\":\"\",\"fb_api_limit\":\"\",\"reviews_limit\":\"\"}}','widget','','publish','closed','closed','','widget','','','2022-01-22 19:40:22','2022-01-22 19:40:22','',0,'https://capitalbookkeepingco.com/brb_collection/widget/',0,'brb_collection','',0),(237,1,'2022-01-10 17:55:59','2022-01-10 17:55:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Reviews\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/review-geae8de4df_1280.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Read what our clients have to say</h3>\n<p>[brb_collection id=\"235\"]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Reviews','','publish','closed','closed','','reviews','','','2022-01-16 15:08:00','2022-01-16 15:08:00','',0,'https://capitalbookkeepingco.com/?page_id=237',0,'page','',0),(238,1,'2022-01-10 17:48:29','2022-01-10 17:48:29','','Reviews','','inherit','closed','closed','','237-revision-v1','','','2022-01-10 17:48:29','2022-01-10 17:48:29','',237,'https://capitalbookkeepingco.com/?p=238',0,'revision','',0),(239,1,'2022-02-05 15:44:24','2022-01-10 17:56:03',' ','','','publish','closed','closed','','239','','','2022-02-05 15:44:24','2022-02-05 15:44:24','',0,'https://capitalbookkeepingco.com/?p=239',1,'nav_menu_item','',0),(242,1,'2022-01-10 17:53:54','2022-01-10 17:53:54','','review-geae8de4df_1280','','inherit','open','closed','','review-geae8de4df_1280','','','2022-01-10 17:53:54','2022-01-10 17:53:54','',237,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/review-geae8de4df_1280.jpg',0,'attachment','image/jpeg',0),(289,1,'2022-01-10 21:22:08','2022-01-10 21:22:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"mailto:info@capitalbookkeepingco.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"mailto:info@capitalbookkeepingco.com\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %% Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5%|5%|3%|5%|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Capital Bookkepping Serving the community for over 50 years.</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>Proudly serving the Capital Bookkeeping community, we offer a wide range of personal and professional accounting knowledge, business advisory and audit-related services to a broad client base operating locally and in a variety of industries, including businesses, Strata Corporations, Not-for-Profit organizations, and First Nations.</p>\n<p>We are closely integrated with our offices in Vancouver, Kelowna and Osoyoos, thereby allowing for coordinated activity across locations, as well as the ability to draw on the extensive technical depth and accounting abilities of others in the firm, to effectively provide accounting and business advisory services to meet our diverse clients’ needs. For your convenience, clients can access their financial documents 24/7 through our secure online portal.</p>\n</div>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2022-01-10 21:22:08','2022-01-10 21:22:08','',118,'https://capitalbookkeepingco.com/?p=289',0,'revision','',0),(280,1,'2022-01-10 19:26:28','2022-01-10 19:26:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"mailto:info@capitalbookkeepingco.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"mailto:info@capitalbookkeepingco.com\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %% Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Request For Proposal</h3>\n<div>\n<p>Click the button below to start a request for proposal. If your request relates to a Strata Corporation specifically, please<span> </span><a href=\"#\">click here</a>.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5%|5%|3%|5%|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Capital Bookkepping Serving the community for over 50 years.</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>Proudly serving the Capital Bookkeeping community, we offer a wide range of personal and professional accounting knowledge, business advisory and audit-related services to a broad client base operating locally and in a variety of industries, including businesses, Strata Corporations, Not-for-Profit organizations, and First Nations.</p>\n<p>We are closely integrated with our offices in Vancouver, Kelowna and Osoyoos, thereby allowing for coordinated activity across locations, as well as the ability to draw on the extensive technical depth and accounting abilities of others in the firm, to effectively provide accounting and business advisory services to meet our diverse clients’ needs. For your convenience, clients can access their financial documents 24/7 through our secure online portal.</p>\n</div>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2022-01-10 19:26:28','2022-01-10 19:26:28','',118,'https://capitalbookkeepingco.com/?p=280',0,'revision','',0),(257,1,'2022-01-10 18:17:18','2022-01-10 18:17:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"mailto:info@capitalbookkeepingco.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"mailto:info@capitalbookkeepingco.com\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\" email=\"info@capitalbookkeepingco.com,info@localmarketingplus.ca\" custom_message=\"Name: %% Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Request For Proposal</h3>\n<div>\n<p>Click the button below to start a request for proposal. If your request relates to a Strata Corporation specifically, please<span> </span><a href=\"#\">click here</a>.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" button_alignment=\"center\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5%|5%|3%|5%|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h2>Capital Bookkepping Serving the community for over 50 years.</h2>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>Proudly serving the Capital Bookkeeping community, we offer a wide range of personal and professional accounting knowledge, business advisory and audit-related services to a broad client base operating locally and in a variety of industries, including businesses, Strata Corporations, Not-for-Profit organizations, and First Nations.</p>\n<p>We are closely integrated with our offices in Vancouver, Kelowna and Osoyoos, thereby allowing for coordinated activity across locations, as well as the ability to draw on the extensive technical depth and accounting abilities of others in the firm, to effectively provide accounting and business advisory services to meet our diverse clients’ needs. For your convenience, clients can access their financial documents 24/7 through our secure online portal.</p>\n</div>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2022-01-10 18:17:18','2022-01-10 18:17:18','',118,'https://capitalbookkeepingco.com/?p=257',0,'revision','',0),(246,1,'2022-01-10 17:55:59','2022-01-10 17:55:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Reviews\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/review-geae8de4df_1280.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][brb_collection id=\"235\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Reviews','','inherit','closed','closed','','237-revision-v1','','','2022-01-10 17:55:59','2022-01-10 17:55:59','',237,'https://capitalbookkeepingco.com/?p=246',0,'revision','',0),(244,1,'2022-01-10 17:54:44','2022-01-10 17:54:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Reviews\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/review-geae8de4df_1280.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"][brb_collection id=\"235\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Reviews','','inherit','closed','closed','','237-revision-v1','','','2022-01-10 17:54:44','2022-01-10 17:54:44','',237,'https://capitalbookkeepingco.com/?p=244',0,'revision','',0),(243,1,'2022-01-10 17:54:26','2022-01-10 17:54:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Reviews\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/review-geae8de4df_1280.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"review-geae8de4df_1280\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"][brb_collection id=\"235\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Reviews','','inherit','closed','closed','','237-revision-v1','','','2022-01-10 17:54:26','2022-01-10 17:54:26','',237,'https://capitalbookkeepingco.com/?p=243',0,'revision','',0),(241,1,'2022-01-10 17:51:44','2022-01-10 17:51:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header title=\"Reviews\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][brb_collection id=\"235\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Reviews','','inherit','closed','closed','','237-revision-v1','','','2022-01-10 17:51:44','2022-01-10 17:51:44','',237,'https://capitalbookkeepingco.com/?p=241',0,'revision','',0),(247,1,'2022-02-05 15:44:24','2022-01-10 17:57:32',' ','','','publish','closed','closed','','247','','','2022-02-05 15:44:24','2022-02-05 15:44:24','',0,'https://capitalbookkeepingco.com/?p=247',5,'nav_menu_item','',0),(248,1,'2022-01-10 17:57:27','2022-01-10 17:57:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Reviews\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/review-geae8de4df_1280.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"150px||150px||true|false\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"235\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Reviews','','inherit','closed','closed','','237-revision-v1','','','2022-01-10 17:57:27','2022-01-10 17:57:27','',237,'https://capitalbookkeepingco.com/?p=248',0,'revision','',0),(250,1,'2022-01-10 18:04:12','2022-01-10 18:04:12','','Capital-Bookkeeping--b&W','','inherit','open','closed','','capital-bookkeeping-bw','','','2022-01-10 18:04:12','2022-01-10 18:04:12','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg',0,'attachment','image/jpeg',0),(260,1,'2022-01-10 18:49:22','2022-01-10 18:49:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-10 18:49:22','2022-01-10 18:49:22','',89,'https://capitalbookkeepingco.com/?p=260',0,'revision','',0),(258,1,'2022-01-10 18:47:52','2022-01-10 18:47:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finance, So You Can Run Your Business\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"22px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"150px||150px||true|false\" sticky_enabled=\"0\" title_text=\"Capital-Bookkeeping--b&W\" button_one_url=\"/contact-us/\" title_font=\"|800|||||||\" title_font_size=\"55px\" subhead_font=\"|600|||||||\" subhead_line_height=\"1.7em\" title_line_height=\"1.5em\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-10 18:47:52','2022-01-10 18:47:52','',89,'https://capitalbookkeepingco.com/?p=258',0,'revision','',0),(255,1,'2022-02-05 15:44:24','2022-01-10 18:13:16',' ','','','publish','closed','closed','','255','','','2022-02-05 15:44:24','2022-02-05 15:44:24','',0,'https://capitalbookkeepingco.com/?p=255',7,'nav_menu_item','',0),(252,1,'2022-01-10 18:04:35','2022-01-10 18:04:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"We Handle Your Finances \" subhead=\"So You Can Run Your Business\" button_one_text=\"Contact Us\" _builder_version=\"4.14.5\" _module_preset=\"default\" subhead_font_size=\"25px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding=\"150px||150px||true|false\" sticky_enabled=\"0\" title_text=\"Capital-Bookkeeping--b&W\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>We Handle Your Finances So You Can Run Your Business</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-10 18:04:35','2022-01-10 18:04:35','',89,'https://capitalbookkeepingco.com/?p=252',0,'revision','',0),(261,1,'2022-01-10 18:50:53','2022-01-10 18:50:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>Professional Bookkeeping Services </h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4>Get Started</h4>\n<h2>Paperwork weighing you down?</h2>\nYour financial papers can pile up quickly.  Sorting them out can be a frustrating hassle.  We can help it all make sense.  Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-10 18:50:53','2022-01-10 18:50:53','',89,'https://capitalbookkeepingco.com/?p=261',0,'revision','',0),(264,1,'2022-01-10 18:52:54','2022-01-10 18:52:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services </h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-10 18:52:54','2022-01-10 18:52:54','',89,'https://capitalbookkeepingco.com/?p=264',0,'revision','',0),(262,1,'2022-01-10 18:51:13','2022-01-10 18:51:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>Professional Bookkeeping Services </h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Capital-Bookkeeping-Company-.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-10 18:51:13','2022-01-10 18:51:13','',89,'https://capitalbookkeepingco.com/?p=262',0,'revision','',0),(272,1,'2022-01-10 19:02:56','2022-01-10 19:02:56','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"||5px||false|false\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-10 19:02:56','2022-01-10 19:02:56','',185,'https://capitalbookkeepingco.com/?p=272',0,'revision','',0),(263,1,'2022-01-10 18:52:54','2022-01-10 18:52:54','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"||5px||false|false\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form _builder_version=\"4.14.2\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"et_footer_layout\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Contact\" allowed_symbols=\"numbers\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"et_footer_layout\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"et_footer_layout\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"et_footer_layout\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-10 18:52:54','2022-01-10 18:52:54','',185,'https://capitalbookkeepingco.com/?p=263',0,'revision','',0),(265,1,'2022-01-10 18:57:38','2022-01-10 18:57:38','','','','inherit','open','closed','','capital-bookkeeping-company-logo','','','2022-01-10 18:57:44','2022-01-10 18:57:44','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png',0,'attachment','image/png',0),(276,1,'2022-01-10 19:08:54','2022-01-10 19:08:54','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" url=\"https://capitalbookkeepingco.com/\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-10 19:08:54','2022-01-10 19:08:54','',152,'https://capitalbookkeepingco.com/?p=276',0,'revision','',0),(275,1,'2022-01-10 19:06:34','2022-01-10 19:06:34','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\" header_line_height=\"0.7em\" sticky_enabled=\"0\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-10 19:06:34','2022-01-10 19:06:34','',152,'https://capitalbookkeepingco.com/?p=275',0,'revision','',0),(270,1,'2022-01-10 19:01:35','2022-01-10 19:01:35','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital-Bookkeeping-Company1\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" hover_enabled=\"0\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" hover_enabled=\"0\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" sticky_enabled=\"0\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" hover_enabled=\"0\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\" body_line_height=\"0.7em\" sticky_enabled=\"0\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-10 19:01:35','2022-01-10 19:01:35','',152,'https://capitalbookkeepingco.com/?p=270',0,'revision','',0),(277,1,'2022-01-10 19:17:04','2022-01-10 19:17:04','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"||5px||false|false\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form email=\"info@capitalbookkeepingco.com,info@localmarketingplus.ca\" custom_message=\"Name:%%Name%%||et_pb_line_break_holder||Contact No: %%mobile%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" background_color=\"#3b5998\" _builder_version=\"4.14.5\" _module_preset=\"default\" follow_button=\"off\" url_new_window=\"on\" url=\" https://www.facebook.com/Capital-Bookkeeping-Co-826640307692771\" hover_enabled=\"0\" sticky_enabled=\"0\"]facebook[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-10 19:17:04','2022-01-10 19:17:04','',185,'https://capitalbookkeepingco.com/?p=277',0,'revision','',0),(371,1,'2022-01-15 20:24:24','2022-01-15 20:24:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>s No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-15 20:24:24','2022-01-15 20:24:24','',89,'https://capitalbookkeepingco.com/?p=371',0,'revision','',0),(267,1,'2022-01-10 18:57:55','2022-01-10 18:57:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services </h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over <span>40 combined years of experience servicing business of all sizes and industry types. </span>Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-10 18:57:55','2022-01-10 18:57:55','',89,'https://capitalbookkeepingco.com/?p=267',0,'revision','',0),(466,1,'2022-01-31 19:48:04','2022-01-31 19:48:04','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.83)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"||5px||false|false\" hover_enabled=\"0\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\" positioning=\"none\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name:%%Name%%||et_pb_line_break_holder||Contact No: %%mobile%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.7\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.14.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/Capital-Bookkeeping-Co-826640307692771\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-31 19:48:04','2022-01-31 19:48:04','',185,'https://capitalbookkeepingco.com/?p=466',0,'revision','',0),(439,1,'2022-01-22 21:11:20','2022-01-22 21:11:20','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.83)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"||5px||false|false\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name:%%Name%%||et_pb_line_break_holder||Contact No: %%mobile%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.7\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/Capital-Bookkeeping-Co-826640307692771\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-22 21:11:20','2022-01-22 21:11:20','',185,'https://capitalbookkeepingco.com/?p=439',0,'revision','',0),(274,1,'2022-01-10 19:05:40','2022-01-10 19:05:40','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"||5px||false|false\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" email=\"info@capitalbookkeepingco.com,info@localmarketingplus.ca\" custom_message=\"Name:%%Name%%||et_pb_line_break_holder||Contact No: %%mobile%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-10 19:05:40','2022-01-10 19:05:40','',185,'https://capitalbookkeepingco.com/?p=274',0,'revision','',0),(431,1,'2022-01-22 20:56:05','2022-01-22 20:56:05','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.83)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" custom_padding=\"||5px||false|false\" hover_enabled=\"0\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\" background_enable_image=\"off\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name:%%Name%%||et_pb_line_break_holder||Contact No: %%mobile%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/Capital-Bookkeeping-Co-826640307692771\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-22 20:56:05','2022-01-22 20:56:05','',185,'https://capitalbookkeepingco.com/?p=431',0,'revision','',0),(279,1,'2022-01-10 19:17:55','2022-01-10 19:17:55','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"||5px||false|false\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name:%%Name%%||et_pb_line_break_holder||Contact No: %%mobile%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" background_color=\"#3b5998\" _builder_version=\"4.14.5\" _module_preset=\"default\" follow_button=\"off\" url_new_window=\"on\" url=\" https://www.facebook.com/Capital-Bookkeeping-Co-826640307692771\" hover_enabled=\"0\" sticky_enabled=\"0\"]facebook[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-10 19:17:55','2022-01-10 19:17:55','',185,'https://capitalbookkeepingco.com/?p=279',0,'revision','',0),(288,1,'2022-01-10 19:36:39','2022-01-10 19:36:39','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.41)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"||5px||false|false\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name:%%Name%%||et_pb_line_break_holder||Contact No: %%mobile%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_relation=\"on\" conditional_logic_rules=\"%91{%22field%22:%22email%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/Capital-Bookkeeping-Co-826640307692771\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.5\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" hover_enabled=\"0\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\" disabled_on=\"on|on|off\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-10 19:36:39','2022-01-10 19:36:39','',185,'https://capitalbookkeepingco.com/?p=288',0,'revision','',0),(295,1,'2022-01-11 18:34:13','2022-01-11 18:34:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.58)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-calculating-profit-with-financial-analysis-graphs-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<h1>Contact Us</h1>\n</div>\n</div>\n<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n<div class=\"et_pb_text_inner\">\n<p>We are the answer to your accounting needs. Whether your immediate concerns involve taxes, payroll, bookkeeping or audits, it is worth your while to seek the services of a trusted accounting firm.</p>\n</div>\n</div>[/et_pb_text][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Email\" url=\"mailto:info@capitalbookkeepingco.com\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf658;||fa||900\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" link_option_url=\"mailto:info@capitalbookkeepingco.com\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %% Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"2666c498-a8b0-4d3c-a7ed-0c0adfcf8597\" form_field_background_color=\"RGBA(255,255,255,0)\" form_field_text_color=\"#FFFFFF\" captcha_text_color=\"#FFFFFF\" custom_button=\"on\" button_text_color=\"#FFFFFF\" border_width_all=\"1px\" border_color_all=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" _builder_version=\"4.14.5\" _module_preset=\"default\" width=\"100%\" max_width=\"100%\" custom_padding=\"0px|0px|0px|0px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px|true|true\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_padding=\"0px|0px|0px|0px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_code _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" module_alignment=\"center\" custom_margin=\"0px|0px|0px|0px|true|true\" custom_padding=\"0px|0px|0px|0px|true|true\" sticky_enabled=\"0\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10289.946779014505!2d-119.6337124!3d49.8521017!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c5346f28d1036ae!2sCapital%20Bookkeeping%20Company!5e0!3m2!1sen!2s!4v1639677626484!5m2!1sen!2s\" width=\"100%\" height=\"450px\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\"></iframe>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','inherit','closed','closed','','118-revision-v1','','','2022-01-11 18:34:13','2022-01-11 18:34:13','',118,'https://capitalbookkeepingco.com/?p=295',0,'revision','',0),(323,1,'2022-01-13 16:33:24','2022-01-13 16:33:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"bookkeeping\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Government-Remittances\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"CRA-Receiver-Payment\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Health-benefits-admin\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"T4\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"construction\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Retail\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Growing-cash.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Growing-cash\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"agriculture\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-13 16:33:24','2022-01-13 16:33:24','',94,'https://capitalbookkeepingco.com/?p=323',0,'revision','',0),(313,1,'2022-01-13 16:28:25','2022-01-13 16:28:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Bookkeeper-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Growing-cash.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-13 16:28:25','2022-01-13 16:28:25','',94,'https://capitalbookkeepingco.com/?p=313',0,'revision','',0),(312,1,'2022-01-11 19:55:51','2022-01-11 19:55:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Bookkeeper-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Bookkeeper\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"financial-reports\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"grant-application\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"accounts-receivable\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Accounts-payable\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"payroll\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Growing-cash.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Growing-cash\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Non-Profit\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-11 19:55:51','2022-01-11 19:55:51','',94,'https://capitalbookkeepingco.com/?p=312',0,'revision','',0),(302,1,'2022-01-11 18:59:23','2022-01-11 18:59:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"bookkeeper\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"payroll\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Website-Non-Profit-scaled.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Website - Non-Profit\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-11 18:59:23','2022-01-11 18:59:23','',94,'https://capitalbookkeepingco.com/?p=302',0,'revision','',0),(299,1,'2022-01-11 18:54:37','2022-01-11 18:54:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"payroll\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-11 18:54:37','2022-01-11 18:54:37','',94,'https://capitalbookkeepingco.com/?p=299',0,'revision','',0),(298,1,'2022-01-11 18:53:47','2022-01-11 18:53:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-11 18:53:47','2022-01-11 18:53:47','',94,'https://capitalbookkeepingco.com/?p=298',0,'revision','',0),(297,1,'2022-01-11 18:53:27','2022-01-11 18:53:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-11 18:53:27','2022-01-11 18:53:27','',94,'https://capitalbookkeepingco.com/?p=297',0,'revision','',0),(303,1,'2022-01-11 19:51:52','2022-01-11 19:51:52','','Bookkeeper','','inherit','open','closed','','bookkeeper-2','','','2022-01-11 19:51:52','2022-01-11 19:51:52','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Bookkeeper-1.jpg',0,'attachment','image/jpeg',0),(304,1,'2022-01-11 19:52:27','2022-01-11 19:52:27','','Accounts-payable','','inherit','open','closed','','accounts-payable','','','2022-01-11 19:52:27','2022-01-11 19:52:27','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg',0,'attachment','image/jpeg',0),(305,1,'2022-01-11 19:52:56','2022-01-11 19:52:56','','financial-reports','','inherit','open','closed','','financial-reports','','','2022-01-11 19:52:56','2022-01-11 19:52:56','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg',0,'attachment','image/jpeg',0),(306,1,'2022-01-11 19:53:23','2022-01-11 19:53:23','','accounts-receivable','','inherit','open','closed','','accounts-receivable','','','2022-01-11 19:53:23','2022-01-11 19:53:23','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg',0,'attachment','image/jpeg',0),(307,1,'2022-01-11 19:53:50','2022-01-11 19:53:50','','grant-application','','inherit','open','closed','','grant-application','','','2022-01-11 19:53:50','2022-01-11 19:53:50','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg',0,'attachment','image/jpeg',0),(308,1,'2022-01-11 19:54:16','2022-01-11 19:54:16','','payroll','','inherit','open','closed','','payroll-2','','','2022-01-11 19:54:16','2022-01-11 19:54:16','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg',0,'attachment','image/jpeg',0),(314,1,'2022-01-13 16:29:04','2022-01-13 16:29:04','','bookkeeping','','inherit','open','closed','','bookkeeping','','','2022-01-13 16:29:04','2022-01-13 16:29:04','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg',0,'attachment','image/jpeg',0),(315,1,'2022-01-13 16:29:44','2022-01-13 16:29:44','','Government-Remittances','','inherit','open','closed','','government-remittances','','','2022-01-13 16:29:44','2022-01-13 16:29:44','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg',0,'attachment','image/jpeg',0),(316,1,'2022-01-13 16:30:01','2022-01-13 16:30:01','','CRA-Receiver-Payment','','inherit','open','closed','','cra-receiver-payment','','','2022-01-13 16:30:01','2022-01-13 16:30:01','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg',0,'attachment','image/jpeg',0),(326,1,'2022-01-13 19:20:12','2022-01-13 19:20:12','','chiropractic','','inherit','open','closed','','chiropractic','','','2022-01-13 19:20:12','2022-01-13 19:20:12','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg',0,'attachment','image/jpeg',0),(333,1,'2022-01-13 19:22:27','2022-01-13 19:22:27','','Kelowna Bookkeeper Services','','inherit','closed','closed','','331-revision-v1','','','2022-01-13 19:22:27','2022-01-13 19:22:27','',331,'https://capitalbookkeepingco.com/?p=333',0,'revision','',0),(337,1,'2022-01-13 19:26:55','2022-01-13 19:26:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kelowna Bookkeeper Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" text_shadow_style=\"preset1\" title_font=\"|800|||||||\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.69)\" background_color_gradient_overlays_image=\"on\" background_color_gradient_end=\"rgba(0,0,0,0.69)\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need help with bookkeeping, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper Services','','inherit','closed','closed','','331-revision-v1','','','2022-01-13 19:26:55','2022-01-13 19:26:55','',331,'https://capitalbookkeepingco.com/?p=337',0,'revision','',0),(338,1,'2022-01-13 19:27:30','2022-01-13 19:27:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" url=\"/kelowna-bookkeeper-services/\" link_option_url=\"/kelowna-bookkeeper-services/\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"chiropractic\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-13 19:27:30','2022-01-13 19:27:30','',94,'https://capitalbookkeepingco.com/?p=338',0,'revision','',0),(335,1,'2022-01-13 19:23:40','2022-01-13 19:23:40','','bookkeeping','','inherit','open','closed','','bookkeeping-2','','','2022-01-13 19:23:40','2022-01-13 19:23:40','',331,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg',0,'attachment','image/jpeg',0),(310,1,'2022-01-11 19:54:56','2022-01-11 19:54:56','','Growing-cash','','inherit','open','closed','','growing-cash','','','2022-01-11 19:54:56','2022-01-11 19:54:56','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Growing-cash.jpg',0,'attachment','image/jpeg',0),(311,1,'2022-01-11 19:55:15','2022-01-11 19:55:15','','Non-Profit','','inherit','open','closed','','non-profit','','','2022-01-11 19:55:15','2022-01-11 19:55:15','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg',0,'attachment','image/jpeg',0),(301,1,'2022-01-11 18:58:51','2022-01-11 18:58:51','','Website - Non-Profit','','inherit','open','closed','','website-non-profit','','','2022-01-11 18:58:51','2022-01-11 18:58:51','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Website-Non-Profit.jpg',0,'attachment','image/jpeg',0),(331,1,'2022-01-13 19:24:43','2022-01-13 19:24:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0-1642108188059\" data-quickaccess-id=\"title\">Kelowna Bookkeeping Services</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b><span style=\"font-weight: 400;\"><img class=\"wp-image-335 aligncenter size-full\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" alt=\"\" width=\"757\" height=\"562\" /></span><b></b></li>\n</ul>\n<h2> </h2>\n<h2><b>Corporate, Proprietorships &amp; Non Profits</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary book keeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s books to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','publish','closed','closed','','kelowna-bookkeeper','','','2022-01-15 20:12:24','2022-01-15 20:12:24','',94,'https://capitalbookkeepingco.com/?page_id=331',0,'page','',0),(332,1,'2022-01-13 19:21:48','2022-01-13 19:21:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"chiropractic\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-13 19:21:48','2022-01-13 19:21:48','',94,'https://capitalbookkeepingco.com/?p=332',0,'revision','',0),(318,1,'2022-01-13 16:30:39','2022-01-13 16:30:39','','Health-benefits-admin','','inherit','open','closed','','health-benefits-admin','','','2022-01-13 16:30:39','2022-01-13 16:30:39','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg',0,'attachment','image/jpeg',0),(319,1,'2022-01-13 16:30:56','2022-01-13 16:30:56','','T4','','inherit','open','closed','','t4','','','2022-01-13 16:30:56','2022-01-13 16:30:56','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg',0,'attachment','image/jpeg',0),(320,1,'2022-01-13 16:31:28','2022-01-13 16:31:28','','construction','','inherit','open','closed','','construction','','','2022-01-13 16:31:28','2022-01-13 16:31:28','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg',0,'attachment','image/jpeg',0),(321,1,'2022-01-13 16:31:54','2022-01-13 16:31:54','','Retail','','inherit','open','closed','','retail','','','2022-01-13 16:31:54','2022-01-13 16:31:54','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg',0,'attachment','image/jpeg',0),(322,1,'2022-01-13 16:33:09','2022-01-13 16:33:09','','agriculture','','inherit','open','closed','','agriculture','','','2022-01-13 16:33:09','2022-01-13 16:33:09','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg',0,'attachment','image/jpeg',0),(325,1,'2022-01-13 16:36:41','2022-01-13 16:36:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kelowna-Bookeeper-services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Growing-cash.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.14.5\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need help with bookkeeping, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><span style=\"font-weight: 400;\"></span> <b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-13 16:36:41','2022-01-13 16:36:41','',94,'https://capitalbookkeepingco.com/?p=325',0,'revision','',0),(329,1,'2022-01-13 19:20:56','2022-01-13 19:20:56','[et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need help with bookkeeping, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><span style=\"font-weight: 400;\"></span> <b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row]','bk content','','publish','closed','closed','','bk-content','','','2022-01-13 19:20:56','2022-01-13 19:20:56','',0,'https://capitalbookkeepingco.com/et_pb_layout/bk-content/',0,'et_pb_layout','',0),(330,1,'2022-01-13 19:21:05','2022-01-13 19:21:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kelowna-Bookeeper-services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"chiropractic\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-13 19:21:05','2022-01-13 19:21:05','',94,'https://capitalbookkeepingco.com/?p=330',0,'revision','',0),(328,1,'2022-01-13 19:20:27','2022-01-13 19:20:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kelowna-Bookeeper-services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"chiropractic\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need help with bookkeeping, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><span style=\"font-weight: 400;\"></span> <b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-13 19:20:27','2022-01-13 19:20:27','',94,'https://capitalbookkeepingco.com/?p=328',0,'revision','',0),(340,1,'2022-01-13 21:02:01','2022-01-13 21:02:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kelowna Bookkeeper Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.69)\" background_color_gradient_end=\"rgba(0,0,0,0.69)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" custom_padding=\"150px||150px||true|false\" text_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','inherit','closed','closed','','331-revision-v1','','','2022-01-13 21:02:01','2022-01-13 21:02:01','',331,'https://capitalbookkeepingco.com/?p=340',0,'revision','',0),(336,1,'2022-01-13 19:24:43','2022-01-13 19:24:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header title=\"Kelowna Bookkeeper Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\" title_text=\"bookkeeping\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.5\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" sticky_enabled=\"0\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need help with bookkeeping, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper Services','','inherit','closed','closed','','331-revision-v1','','','2022-01-13 19:24:43','2022-01-13 19:24:43','',331,'https://capitalbookkeepingco.com/?p=336',0,'revision','',0),(339,1,'2022-01-13 21:00:15','2022-01-13 21:00:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kelowna Bookkeeper Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.69)\" background_color_gradient_end=\"rgba(0,0,0,0.69)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" custom_padding=\"150px||150px||true|false\" text_shadow_style=\"preset1\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper Services','','inherit','closed','closed','','331-revision-v1','','','2022-01-13 21:00:15','2022-01-13 21:00:15','',331,'https://capitalbookkeepingco.com/?p=339',0,'revision','',0),(347,1,'2022-01-14 18:01:47','2022-01-14 18:01:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 >Payroll and Government Remittances\n</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><span style=\"font-weight: 400;\">If you are a business owner and have employees working under you, it is expected of you to have a payroll. What should it consist of? It should have your employee names and information, the number of hours worked, and other payment details such as wages, deductions, etc. As a business owner, paysheet processes can be time-consuming and laborious especially if you engage in manual processing. To take the stress and burden off Paysheet and government remittances of your shoulder, we are here to render exceptional services to business owners in the province of British Columbia. </span></p>\n<p><span style=\"font-weight: 400;\">Getting a clear understanding and adhering to the Federal and Provincial paysheet deductions can be complicated for most people. To save your business from any compliance issue, working with a firm with years of experience in managing paysheet would help a lot. When you use our services, we’ll make the process seamless by submitting government remittances electronically on your behalf. We are currently working with different businesses in British Columbia and their amazing feedbacks say a lot about we assist employers.</span></p>\n<p><img class=\"wp-image-356 size-medium aligncenter\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1-300x264.jpg\" alt=\"\" width=\"300\" height=\"264\" /></p>\n<h2><b>Why c</b><b>hoose Capital Bookkeeping Co.  for your employee payroll and remittances?</b></h2>\n<p><span style=\"font-weight: 400;\">We pride ourselves as one of the best financial and accounting firms in the province of British Columbia. It is our delight to see employers pay their employees simply and suitably. We have years of experience in the financial industry and are responsible for managing dozens of small and medium-sized businesses – managing everything about paysheet processing and other financial calculations. </span></p>\n<p><span style=\"font-weight: 400;\">We try to make everything concise and easy to understand by employers. Our experts are super friendly and are ready to solve any issue that has to do with paysheet and government settlements. Below are some of the services you will get from us when you get in touch with us today:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Payroll preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">T4, T4A, T5018 Tax Slip Preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Group health benefits administration</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CRA Receiver General tax payments</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Workers’ compensation preparation and submission</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">We do everything within our reach to ensure clients’ paysheet is processed without any setbacks.</span></p>\n<h3><b>Enjoy exceptional paysheet and remittances from our professionals</b></h3>\n<p><span style=\"font-weight: 400;\">If you want to avoid any hitch in paying your employees or government settlements, we are the number one go-to financial firm in British Columbia. We have partnered with hundreds of businesses and would be glad to help you get rid of any guesswork in your business finance. Get in touch with us today and we will put in extra effort to provide you with amazing financial services. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Payroll and Government Remittances','','publish','closed','closed','','payroll-and-government-remittances','','','2022-01-15 20:19:21','2022-01-15 20:19:21','',94,'https://capitalbookkeepingco.com/?page_id=347',0,'page','',0),(348,1,'2022-01-14 17:58:05','2022-01-14 17:58:05','','Payroll','','inherit','closed','closed','','347-revision-v1','','','2022-01-14 17:58:05','2022-01-14 17:58:05','',347,'https://capitalbookkeepingco.com/?p=348',0,'revision','',0),(354,1,'2022-01-14 19:54:34','2022-01-14 19:54:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 >Payroll and Government Remittances\n</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">If you are a business owner and have employees working under you, it is expected of you to have a payroll. What should a payroll consist of? It should have your employee names and information, the number of hours worked, and other payment details such as wages, deductions, etc. As a business owner, paysheet processes can be time-consuming and laborious especially if you engage in manual processing. To take the stress and burden off Paysheet and government remittances of your shoulder, we are here to render exceptional services to business owners in the province of British Columbia. </span></p>\n<p><span style=\"font-weight: 400;\">Getting a clear understanding and adhering to the Federal and Provincial paysheet deductions can be complicated for most people. To save your business from any compliance issue, working with a firm with years of experience in managing paysheet would help a lot. When you use our services, we’ll make the process seamless by submitting government remittances electronically on your behalf. We are currently working with different businesses in British Columbia and their amazing feedbacks say a lot about we assist employers.</span></p>\n<p><img class=\"wp-image-308 aligncenter size-medium\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1-300x264.jpg\" alt=\"\" width=\"300\" height=\"264\" /></p>\n<h2><b>Why c</b><b>hoose Capital Bookkeeping Co.  for your employee payroll and remittances?</b></h2>\n<p><span style=\"font-weight: 400;\">We pride ourselves as one of the best financial and accounting firms in the province of British Columbia. It is our delight to see employers pay their employees simply and suitably. We have years of experience in the financial industry and are responsible for managing dozens of small and medium-sized businesses – managing everything about paysheet processing and other financial calculations. </span></p>\n<p><span style=\"font-weight: 400;\">We try to make everything concise and easy to understand by employers. Our experts are super friendly and are ready to solve any issue that has to do with paysheet and government settlements. Below are some of the services you will get from us when you get in touch with us today:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Payroll preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">T4, T4A, T5018 Tax Slip Preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Group health benefits administration</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CRA Receiver General tax payments</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Workers’ compensation preparation and submission</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">We do everything within our reach to ensure clients’ paysheet is processed without any setbacks.</span></p>\n<h3><b>Enjoy exceptional paysheet and remittances from our professionals</b></h3>\n<p><span style=\"font-weight: 400;\">If you want to avoid any hitch in paying your employees or government settlements, we are the number one go-to financial firm in British Columbia. We have partnered with hundreds of businesses and would be glad to help you get rid of any guesswork in your business finance. Get in touch with us today and we will put in extra effort to provide you with amazing financial services. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Payroll and Government Remittances','','inherit','closed','closed','','347-revision-v1','','','2022-01-14 19:54:34','2022-01-14 19:54:34','',347,'https://capitalbookkeepingco.com/?p=354',0,'revision','',0),(343,1,'2022-01-13 21:15:49','2022-01-13 21:15:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" data-shortcode-id=\"1.0-1642108188059\" data-quickaccess-id=\"title\" contenteditable=\"true\">Kelowna Bookkeeper Services</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" hover_enabled=\"0\" global_colors_info=\"{}\" captcha_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','inherit','closed','closed','','331-revision-v1','','','2022-01-13 21:15:49','2022-01-13 21:15:49','',331,'https://capitalbookkeepingco.com/?p=343',0,'revision','',0),(342,1,'2022-01-13 21:14:54','2022-01-13 21:14:54','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_text=\"bookkeeping\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" use_background_color_gradient=\"on\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" custom_padding=\"50px||50px||true|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"4.14.5\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_text_color=\"#FFFFFF\" header_font=\"|800|||||||\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"70px||||false|false\"]<h1 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" data-shortcode-id=\"1.0-1642108188059\" data-quickaccess-id=\"title\" contenteditable=\"true\">Kelowna Bookkeeper Services</h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.14.5\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_contact_form _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','inherit','closed','closed','','331-revision-v1','','','2022-01-13 21:14:54','2022-01-13 21:14:54','',331,'https://capitalbookkeepingco.com/?p=342',0,'revision','',0),(363,1,'2022-01-15 20:04:28','2022-01-15 20:04:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0-1642108188059\" data-quickaccess-id=\"title\">Kelowna Bookkeeping Services</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b><span style=\"font-weight: 400;\"><img class=\"wp-image-335 aligncenter size-full\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" alt=\"\" width=\"757\" height=\"562\" /></span><b></b></li>\n</ul>\n<h2><b></b></h2>\n<h2><b>Corporate, Proprietorships &amp; Non Profits</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary book keeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s books to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<ul>\n<li></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','inherit','closed','closed','','331-revision-v1','','','2022-01-15 20:04:28','2022-01-15 20:04:28','',331,'https://capitalbookkeepingco.com/?p=363',0,'revision','',0),(346,1,'2022-01-13 22:45:53','2022-01-13 22:45:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" custom_padding=\"50px||50px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"bookkeeper\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" data-shortcode-id=\"1.0-1642108188059\" data-quickaccess-id=\"title\" contenteditable=\"true\">Kelowna Bookkeeper Services</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<p><span style=\"font-weight: 400;\"><img src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" width=\"757\" height=\"562\" alt=\"\" class=\"wp-image-335 aligncenter size-full\" /></span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','inherit','closed','closed','','331-revision-v1','','','2022-01-13 22:45:53','2022-01-13 22:45:53','',331,'https://capitalbookkeepingco.com/?p=346',0,'revision','',0),(345,1,'2022-01-13 22:43:15','2022-01-13 22:43:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" custom_padding=\"50px||50px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"bookkeeper\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" data-shortcode-id=\"1.0-1642108188059\" data-quickaccess-id=\"title\" contenteditable=\"true\">Kelowna Bookkeeper Services</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<h2><b>Corporate, Proprietorships &amp; Personal</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary bookkeeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, Accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s bookkeeping to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','inherit','closed','closed','','331-revision-v1','','','2022-01-13 22:43:15','2022-01-13 22:43:15','',331,'https://capitalbookkeepingco.com/?p=345',0,'revision','',0),(353,1,'2022-01-14 19:54:30','2022-01-14 19:54:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 >Payroll and Government Remittances\n</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">If you are a business owner and have employees working under you, it is expected of you to have a payroll. What should a payroll consist of? It should have your employee names and information, the number of hours worked, and other payment details such as wages, deductions, etc. As a business owner, paysheet processes can be time-consuming and laborious especially if you engage in manual processing. To take the stress and burden off Paysheet and government remittances of your shoulder, we are here to render exceptional services to business owners in the province of British Columbia. </span></p>\n<p><span style=\"font-weight: 400;\">Getting a clear understanding and adhering to the Federal and Provincial paysheet deductions can be complicated for most people. To save your business from any compliance issue, working with a firm with years of experience in managing paysheet would help a lot. When you use our services, we’ll make the process seamless by submitting government remittances electronically on your behalf. We are currently working with different businesses in British Columbia and their amazing feedbacks say a lot about we assist employers.</span></p>\n<p><img class=\"wp-image-308 aligncenter size-medium\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1-300x264.jpg\" alt=\"\" width=\"300\" height=\"264\" /></p>\n<h2><b>Why c</b><b>hoose Capital Bookkeeping Co.  for your employee payroll and remittances?</b></h2>\n<p><span style=\"font-weight: 400;\">We pride ourselves as one of the best financial and accounting firms in the province of British Columbia. It is our delight to see employers pay their employees simply and suitably. We have years of experience in the financial industry and are responsible for managing dozens of small and medium-sized businesses – managing everything about paysheet processing and other financial calculations. </span></p>\n<p><span style=\"font-weight: 400;\">We try to make everything concise and easy to understand by employers. Our experts are super friendly and are ready to solve any issue that has to do with paysheet and government settlements. Below are some of the services you will get from us when you get in touch with us today:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Payroll preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">T4, T4A, T5018 Tax Slip Preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Group health benefits administration</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CRA Receiver General tax payments</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Workers’ compensation preparation and submission</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">We do everything within our reach to ensure clients’ paysheet is processed without any setbacks.</span></p>\n<h3><b>Enjoy exceptional paysheet and remittances from our professionals</b></h3>\n<p><span style=\"font-weight: 400;\">If you want to avoid any hitch in paying your employees or government settlements, we are the number one go-to financial firm in British Columbia. We have partnered with hundreds of businesses and would be glad to help you get rid of any guesswork in your business finance. Get in touch with us today and we will put in extra effort to provide you with amazing financial services. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Payroll','','inherit','closed','closed','','347-revision-v1','','','2022-01-14 19:54:30','2022-01-14 19:54:30','',347,'https://capitalbookkeepingco.com/?p=353',0,'revision','',0),(350,1,'2022-01-14 18:01:47','2022-01-14 18:01:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" custom_padding=\"50px||50px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" title_text=\"Accountant at work\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1 >Payroll and Government Remittances\n</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" theme_builder_area=\"post_content\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<p><span style=\"font-weight: 400;\">If you are a business owner and have employees working under you, it is expected of you to have a payroll. What should a payroll consist of? It should have your employee names and information, the number of hours worked, and other payment details such as wages, deductions, etc. As a business owner, paysheet processes can be time-consuming and laborious especially if you engage in manual processing. To take the stress and burden off Paysheet and government remittances of your shoulder, we are here to render exceptional services to business owners in the province of British Columbia. </span></p>\n<p><span style=\"font-weight: 400;\">Getting a clear understanding and adhering to the Federal and Provincial paysheet deductions can be complicated for most people. To save your business from any compliance issue, working with a firm with years of experience in managing paysheet would help a lot. When you use our services, we’ll make the process seamless by submitting government remittances electronically on your behalf. We are currently working with different businesses in British Columbia and their amazing feedbacks say a lot about we assist employers.</span></p>\n<p><img class=\"wp-image-308 aligncenter size-medium\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1-300x264.jpg\" alt=\"\" width=\"300\" height=\"264\" /></p>\n<h2><b>Why c</b><b>hoose Capital Bookkeeping Co.  for your employee payroll and remittances?</b></h2>\n<p><span style=\"font-weight: 400;\">We pride ourselves as one of the best financial and accounting firms in the province of British Columbia. It is our delight to see employers pay their employees simply and suitably. We have years of experience in the financial industry and are responsible for managing dozens of small and medium-sized businesses – managing everything about paysheet processing and other financial calculations. </span></p>\n<p><span style=\"font-weight: 400;\">We try to make everything concise and easy to understand by employers. Our experts are super friendly and are ready to solve any issue that has to do with paysheet and government settlements. Below are some of the services you will get from us when you get in touch with us today:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Payroll preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">T4, T4A, T5018 Tax Slip Preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Group health benefits administration</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CRA Receiver General tax payments</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Workers’ compensation preparation and submission</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">We do everything within our reach to ensure clients’ paysheet is processed without any setbacks.</span></p>\n<h3><b>Enjoy exceptional paysheet and remittances from our professionals</b></h3>\n<p><span style=\"font-weight: 400;\">If you want to avoid any hitch in paying your employees or government settlements, we are the number one go-to financial firm in British Columbia. We have partnered with hundreds of businesses and would be glad to help you get rid of any guesswork in your business finance. Get in touch with us today and we will put in extra effort to provide you with amazing financial services. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Payroll','','inherit','closed','closed','','347-revision-v1','','','2022-01-14 18:01:47','2022-01-14 18:01:47','',347,'https://capitalbookkeepingco.com/?p=350',0,'revision','',0),(352,1,'2022-01-14 18:03:45','2022-01-14 18:03:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" url=\"/services/kelowna-bookkeeper/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/kelowna-bookkeeper/\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" url=\"/services/payroll/\" link_option_url=\"/services/payroll/\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-14 18:03:45','2022-01-14 18:03:45','',94,'https://capitalbookkeepingco.com/?p=352',0,'revision','',0),(355,1,'2022-01-14 19:55:33','2022-01-14 19:55:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" url=\"/services/kelowna-bookkeeper/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/kelowna-bookkeeper/\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" url=\"/services/payroll-and-government-remittances/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll-1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/payroll-and-government-remittances/\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-14 19:55:33','2022-01-14 19:55:33','',94,'https://capitalbookkeepingco.com/?p=355',0,'revision','',0),(356,1,'2022-01-14 20:13:05','2022-01-14 20:13:05','','payroll1','','inherit','open','closed','','payroll1','','','2022-01-14 20:13:05','2022-01-14 20:13:05','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1.jpg',0,'attachment','image/jpeg',0),(357,1,'2022-01-14 20:13:29','2022-01-14 20:13:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" url=\"/services/kelowna-bookkeeper/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/kelowna-bookkeeper/\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" url=\"/services/payroll-and-government-remittances/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/payroll-and-government-remittances/\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"payroll1\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-14 20:13:29','2022-01-14 20:13:29','',94,'https://capitalbookkeepingco.com/?p=357',0,'revision','',0),(358,1,'2022-01-14 20:14:05','2022-01-14 20:14:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 >Payroll and Government Remittances\n</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><span style=\"font-weight: 400;\">If you are a business owner and have employees working under you, it is expected of you to have a payroll. What should a payroll consist of? It should have your employee names and information, the number of hours worked, and other payment details such as wages, deductions, etc. As a business owner, paysheet processes can be time-consuming and laborious especially if you engage in manual processing. To take the stress and burden off Paysheet and government remittances of your shoulder, we are here to render exceptional services to business owners in the province of British Columbia. </span></p>\n<p><span style=\"font-weight: 400;\">Getting a clear understanding and adhering to the Federal and Provincial paysheet deductions can be complicated for most people. To save your business from any compliance issue, working with a firm with years of experience in managing paysheet would help a lot. When you use our services, we’ll make the process seamless by submitting government remittances electronically on your behalf. We are currently working with different businesses in British Columbia and their amazing feedbacks say a lot about we assist employers.</span></p>\n<p><img class=\"wp-image-356 size-medium aligncenter\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1-300x264.jpg\" alt=\"\" width=\"300\" height=\"264\" /></p>\n<h2><b>Why c</b><b>hoose Capital Bookkeeping Co.  for your employee payroll and remittances?</b></h2>\n<p><span style=\"font-weight: 400;\">We pride ourselves as one of the best financial and accounting firms in the province of British Columbia. It is our delight to see employers pay their employees simply and suitably. We have years of experience in the financial industry and are responsible for managing dozens of small and medium-sized businesses – managing everything about paysheet processing and other financial calculations. </span></p>\n<p><span style=\"font-weight: 400;\">We try to make everything concise and easy to understand by employers. Our experts are super friendly and are ready to solve any issue that has to do with paysheet and government settlements. Below are some of the services you will get from us when you get in touch with us today:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Payroll preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">T4, T4A, T5018 Tax Slip Preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Group health benefits administration</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CRA Receiver General tax payments</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Workers’ compensation preparation and submission</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">We do everything within our reach to ensure clients’ paysheet is processed without any setbacks.</span></p>\n<h3><b>Enjoy exceptional paysheet and remittances from our professionals</b></h3>\n<p><span style=\"font-weight: 400;\">If you want to avoid any hitch in paying your employees or government settlements, we are the number one go-to financial firm in British Columbia. We have partnered with hundreds of businesses and would be glad to help you get rid of any guesswork in your business finance. Get in touch with us today and we will put in extra effort to provide you with amazing financial services. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Payroll and Government Remittances','','inherit','closed','closed','','347-revision-v1','','','2022-01-14 20:14:05','2022-01-14 20:14:05','',347,'https://capitalbookkeepingco.com/?p=358',0,'revision','',0),(367,1,'2022-01-15 20:18:37','2022-01-15 20:18:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 >Payroll and Government Remittances\n</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><span style=\"font-weight: 400;\">If you are a business owner and have employees working under you, it is expected of you to have a payroll. What should it consist of? It should have your employee names and information, the number of hours worked, and other payment details such as wages, deductions, etc. As a business owner, paysheet processes can be time-consuming and laborious especially if you engage in manual processing. To take the stress and burden off Paysheet and government remittances of your shoulder, we are here to render exceptional services to business owners in the province of British Columbia. </span></p>\n<p><span style=\"font-weight: 400;\">Getting a clear understanding and adhering to the Federal and Provincial paysheet deductions can be complicated for most people. To save your business from any compliance issue, working with a firm with years of experience in managing paysheet would help a lot. When you use our services, we’ll make the process seamless by submitting government remittances electronically on your behalf. We are currently working with different businesses in British Columbia and their amazing feedbacks say a lot about we assist employers.</span></p>\n<p><img class=\"wp-image-356 size-medium aligncenter\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1-300x264.jpg\" alt=\"\" width=\"300\" height=\"264\" /></p>\n<h2><b>Why c</b><b>hoose Capital Bookkeeping Co.  for your employee payroll and remittances?</b></h2>\n<p><span style=\"font-weight: 400;\">We pride ourselves as one of the best financial and accounting firms in the province of British Columbia. It is our delight to see employers pay their employees simply and suitably. We have years of experience in the financial industry and are responsible for managing dozens of small and medium-sized businesses – managing everything about paysheet processing and other financial calculations. </span></p>\n<p><span style=\"font-weight: 400;\">We try to make everything concise and easy to understand by employers. Our experts are super friendly and are ready to solve any issue that has to do with paysheet and government settlements. Below are some of the services you will get from us when you get in touch with us today:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Payroll preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">T4, T4A, T5018 Tax Slip Preparation</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Group health benefits administration</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CRA Receiver General tax payments</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Workers’ compensation preparation and submission</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">We do everything within our reach to ensure clients’ paysheet is processed without any setbacks.</span></p>\n<h3><b>Enjoy exceptional paysheet and remittances from our professionals</b></h3>\n<p><span style=\"font-weight: 400;\">If you want to avoid any hitch in paying your employees or government settlements, we are the number one go-to financial firm in British Columbia. We have partnered with hundreds of businesses and would be glad to help you get rid of any guesswork in your business finance. Get in touch with us today and we will put in extra effort to provide you with amazing financial services. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Payroll and Government Remittances','','inherit','closed','closed','','347-revision-v1','','','2022-01-15 20:18:37','2022-01-15 20:18:37','',347,'https://capitalbookkeepingco.com/?p=367',0,'revision','',0),(361,1,'2022-01-15 19:59:51','2022-01-15 19:59:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0-1642108188059\" data-quickaccess-id=\"title\">Kelowna Bookkeeping Services</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><b>Corporate, Proprietorships &amp; Non Profits</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary book keeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s books to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<p><span style=\"font-weight: 400;\"><img class=\"wp-image-335 aligncenter size-full\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" alt=\"\" width=\"757\" height=\"562\" /></span></p>\n<h3><b>Services</b></h3>\n<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b></li>\n</ul>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','inherit','closed','closed','','331-revision-v1','','','2022-01-15 19:59:51','2022-01-15 19:59:51','',331,'https://capitalbookkeepingco.com/?p=361',0,'revision','',0),(366,1,'2022-01-15 20:11:30','2022-01-15 20:11:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0-1642108188059\" data-quickaccess-id=\"title\">Kelowna Bookkeeping Services</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b><span style=\"font-weight: 400;\"><img class=\"wp-image-335 aligncenter size-full\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" alt=\"\" width=\"757\" height=\"562\" /></span><b></b></li>\n</ul>\n<h2> </h2>\n<h2><b>Corporate, Proprietorships &amp; Non Profits</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary book keeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s books to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','inherit','closed','closed','','331-revision-v1','','','2022-01-15 20:11:30','2022-01-15 20:11:30','',331,'https://capitalbookkeepingco.com/?p=366',0,'revision','',0),(365,1,'2022-01-15 20:05:26','2022-01-15 20:05:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.66)\" background_color_gradient_end=\"rgba(0,0,0,0.66)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" custom_padding=\"50px||50px||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#FFFFFF\" custom_padding=\"70px||||false|false\" global_colors_info=\"{}\"]<h1 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0-1642108188059\" data-quickaccess-id=\"title\">Kelowna Bookkeeping Services</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name: %%Name%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.5\" _module_preset=\"default\" _unique_id=\"d25abf49-6628-451b-ad3a-42e12c32c9fb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" header_2_line_height=\"1.5em\" header_3_line_height=\"1.5em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><span style=\"font-weight: 400;\">We have been a player in the accounting sector for years now and our services span across various areas. If you need any of the following services below, we would be delighted to give your business a clear-cut financial compilation.</span></p>\n<ul>\n<li><b>Set up of accounts in SAGE (Simply Accounting) or Quickbooks</b></li>\n<li><b></b> <b>Accounts Receivable (Invoicing, Statements)</b></li>\n<li><b></b> <b>Accounts Payable (Paying Invoices)</b></li>\n<li><b></b> <b>Bank and credit card reconciliations</b></li>\n<li><b></b> <b>Monthly &amp; yearly financial statement preparations</b></li>\n<li><b></b> <b>Sales tax reconciliation and remittance</b></li>\n<li><b></b> <b>Job Costing</b></li>\n<li><b></b> <b>Budgeting</b></li>\n<li><b></b> <b>Grant application assistance</b></li>\n<li><b></b> <b>Financial report analysis</b><span style=\"font-weight: 400;\"><img class=\"wp-image-335 aligncenter size-full\" src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping-1.jpg\" alt=\"\" width=\"757\" height=\"562\" /></span><b></b></li>\n</ul>\n<h2> </h2>\n<h2><b>Corporate, Proprietorships &amp; Non Profits</b></h2>\n<p><span style=\"font-weight: 400;\">If you have a business in British Columbia and need a professional bookkeeper, we are a licensed and legally recognized firm to help handle your financials. Whether it is personal, proprietorships, or corporate, we have the technical expertise to give you accurate records of expenditures and revenues. Like it’s often said, having an accurate financial record can give you a clear sense of how your business is faring. Unfortunately, most small businesses lack the wherewithal to handle financial compilations.</span></p>\n<p><span style=\"font-weight: 400;\">Our services span across a broad scope of operations. Whether you want to keep your personal finance away from your business or want to have a clear understanding of your business financial information, we have the necessary book keeping programs to help you achieve that without stress. We have been working with dozens of clients across the province of British Columbia and our experts are among the best in the region.</span></p>\n<h3><b>Bookkeeping and accounting</b></h3>\n<p><span style=\"font-weight: 400;\">Did you know that maintaining an accurate financial record is a legal requirement you need to fulfill? It helps you to file tax returns without any complications in your filing. Also, accurate financial accounting is essential to sustain your company. Doing it correctly will help you make critical decisions on your cash flow, planning investments, and expenditure. Not doing your financial compilation correctly could lead to a crack in your business or an unexpected tax bill, which is something no business would want to experience. </span></p>\n<p><span style=\"font-weight: 400;\">Many small and medium-sized companies still make use of paper records to keep financial details. While manual records may seem convenient to some businesses, the risks of unforeseen circumstances that could lead to damages can affect your business negatively. Also, doing manual calculating transactions and recording can be time-consuming and burdensome. The time spent in manual recording can be channeled to other productive activities for the betterment of your business. </span></p>\n<p><span style=\"font-weight: 400;\">However, with accounting software, you can simplify your company’s books to make all financial records easy to act upon. Accounting software will also help you save energy and time that could be channeled to other areas. </span></p>\n<h3><b>Handling Your Financial Records</b></h3>\n<p><span style=\"font-weight: 400;\">Since finance is the most delicate aspect of any business, extra care must be taken to get things right. We have a team of financial experts that are dedicated to helping businesses reconcile their financial reports. Our experts are licensed, friendly, and dedicated to seeing you meet your financial goals.  </span></p>\n<p><span style=\"font-weight: 400;\">When it comes to accuracy, rest assured of getting that from us because we use some of the finest accounting software to execute our operations. </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Kelowna Bookkeeper','','inherit','closed','closed','','331-revision-v1','','','2022-01-15 20:05:26','2022-01-15 20:05:26','',331,'https://capitalbookkeepingco.com/?p=365',0,'revision','',0),(370,1,'2022-01-15 20:23:24','2022-01-15 20:23:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2>s No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-15 20:23:24','2022-01-15 20:23:24','',89,'https://capitalbookkeepingco.com/?p=370',0,'revision','',0),(368,1,'2022-01-15 20:21:05','2022-01-15 20:21:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>General bookkeeping (Corporate, Proprietorships &amp; Personal)</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable </li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2> No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based bookkeeping business established in 2017, With over 40 combined years of experience servicing business of all sizes and industry types. Servicing Entrepreneurs and small to medium-sized business owners in many different fields. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual bookkeeping service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-15 20:21:05','2022-01-15 20:21:05','',89,'https://capitalbookkeepingco.com/?p=368',0,'revision','',0),(372,1,'2022-01-15 20:25:32','2022-01-15 20:25:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.2\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>s No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based  business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.2\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||30px|\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-15 20:25:32','2022-01-15 20:25:32','',89,'https://capitalbookkeepingco.com/?p=372',0,'revision','',0),(374,1,'2022-02-05 15:44:24','2022-01-16 15:00:17','','Payroll & Remittances','','publish','closed','closed','','374','','','2022-02-05 15:44:24','2022-02-05 15:44:24','',94,'https://capitalbookkeepingco.com/?p=374',4,'nav_menu_item','',0),(375,1,'2022-02-05 15:44:24','2022-01-16 15:00:17',' ','','','publish','closed','closed','','375','','','2022-02-05 15:44:24','2022-02-05 15:44:24','',94,'https://capitalbookkeepingco.com/?p=375',3,'nav_menu_item','',0),(378,1,'2022-01-16 15:14:58','2022-01-16 15:14:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" url=\"/services/kelowna-bookkeeper/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/kelowna-bookkeeper/\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://capitalbookkeepingco.com/services/kelowna-bookkeeper/\">Kelowna Bookkeeper</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" url=\"/services/payroll-and-government-remittances/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/payroll-and-government-remittances/\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://capitalbookkeepingco.com/services/payroll-and-government-remittances/\">Payroll and Government Remittances</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-16 15:14:58','2022-01-16 15:14:58','',94,'https://capitalbookkeepingco.com/?p=378',0,'revision','',0),(869,2,'2023-08-23 19:05:18','2023-08-23 19:05:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.16\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" url=\"/services/kelowna-bookkeeper/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" link_option_url=\"/services/kelowna-bookkeeper/\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/kelowna-bookkeeper/\">Kelowna Bookkeeper</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" url=\"/services/payroll-and-government-remittances/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" link_option_url=\"/services/payroll-and-government-remittances/\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/payroll-and-government-remittances/\">Payroll and Government Remittances</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/kelowna-bookkeeper/\">Kelowna Bookkeeper</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/payroll-and-government-remittances/\">Payroll and Government Remittances</a></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2023-08-23 19:05:18','2023-08-23 19:05:18','',94,'https://capitalbookkeepingco.com/?p=869',0,'revision','',0),(491,1,'2022-03-10 14:58:27','2022-03-10 14:58:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" url=\"/services/kelowna-bookkeeper/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/kelowna-bookkeeper/\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/kelowna-bookkeeper/\">Kelowna Bookkeeper</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" url=\"/services/payroll-and-government-remittances/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/payroll-and-government-remittances/\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/payroll-and-government-remittances/\">Payroll and Government Remittances</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/kelowna-bookkeeper/\">Kelowna Bookkeeper</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/payroll-and-government-remittances/\">Payroll and Government Remittances</a></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-03-10 14:58:27','2022-03-10 14:58:27','',94,'https://capitalbookkeepingco.com/?p=491',0,'revision','',0),(380,1,'2022-01-16 15:16:45','2022-01-16 15:16:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Services\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/workplace-team-cooperation-businesswoman-laptop-office-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_font_size=\"18px\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>At Capital Bookkeeping, we are happy to serve you in a variety of ways</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Bookkeeping\" url=\"/services/kelowna-bookkeeper/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeping.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/kelowna-bookkeeper/\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/kelowna-bookkeeper/\">Kelowna Bookkeeper</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Financial Reports\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/financial-reports.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Grant Application Assistance\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/grant-application.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Receivable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/accounts-receivable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Accounts Payable\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Accounts-payable.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Payroll\" url=\"/services/payroll-and-government-remittances/\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/payroll1.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" link_option_url=\"/services/payroll-and-government-remittances/\" global_colors_info=\"{}\"]<p><a href=\"https://capitalbookkeepingco.com/services/payroll-and-government-remittances/\">Payroll and Government Remittances</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Government Remittances\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Government-Remittances.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://capitalbookkeepingco.com/services/kelowna-bookkeeper/\">Kelowna Bookkeeper</a></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"CRA Receiver Payments\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/CRA-Receiver-Payment.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Health Benefits Admin\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Health-benefits-admin.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"T4,T4A, T5018 Preparation\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/T4.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://capitalbookkeepingco.com/services/payroll-and-government-remittances/\">Payroll and Government Remittances</a></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Non for profit (Charities, Religious Organizations)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Non-Profit.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Construction\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/construction.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Retail \" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Retail.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Medical (Chiropractic)\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/chiropractic.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Agricultural\" image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','94-revision-v1','','','2022-01-16 15:16:45','2022-01-16 15:16:45','',94,'https://capitalbookkeepingco.com/?p=380',0,'revision','',0),(386,1,'2022-01-16 15:27:35','2022-01-16 15:27:35','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.6\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" position_origin_a_tablet=\"\" position_origin_a_phone=\"\" position_origin_a_last_edited=\"on|phone\" position_origin_f_tablet=\"\" position_origin_f_phone=\"\" position_origin_f_last_edited=\"on|phone\" position_origin_r_tablet=\"\" position_origin_r_phone=\"\" position_origin_r_last_edited=\"on|phone\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"visible\" overflow-y=\"visible\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" hover_enabled=\"0\" positioning_tablet=\"\" positioning_phone=\"none\" positioning_last_edited=\"on|phone\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" positioning=\"none\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" url=\"https://capitalbookkeepingco.com/\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.6\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"#FFFFFF\" hover_enabled=\"0\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\" overflow-x=\"visible\" overflow-y=\"visible\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-16 15:27:35','2022-01-16 15:27:35','',152,'https://capitalbookkeepingco.com/?p=386',0,'revision','',0),(384,1,'2022-01-16 15:26:45','2022-01-16 15:26:45','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.6\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" position_origin_a_tablet=\"\" position_origin_a_phone=\"\" position_origin_a_last_edited=\"on|phone\" position_origin_f_tablet=\"\" position_origin_f_phone=\"\" position_origin_f_last_edited=\"on|phone\" position_origin_r_tablet=\"\" position_origin_r_phone=\"\" position_origin_r_last_edited=\"on|phone\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"visible\" overflow-y=\"visible\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" hover_enabled=\"0\" positioning_tablet=\"\" positioning_phone=\"none\" positioning_last_edited=\"on|phone\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" positioning=\"none\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" url=\"https://capitalbookkeepingco.com/\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.6\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\" overflow-x=\"visible\" overflow-y=\"visible\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-16 15:26:45','2022-01-16 15:26:45','',152,'https://capitalbookkeepingco.com/?p=384',0,'revision','',0),(383,1,'2022-01-16 15:26:04','2022-01-16 15:26:04','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.6\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" position_origin_a_tablet=\"\" position_origin_a_phone=\"\" position_origin_a_last_edited=\"on|phone\" position_origin_f_tablet=\"\" position_origin_f_phone=\"\" position_origin_f_last_edited=\"on|phone\" position_origin_r_tablet=\"\" position_origin_r_phone=\"\" position_origin_r_last_edited=\"on|phone\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"hidden\" overflow-y=\"hidden\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" hover_enabled=\"0\" positioning_tablet=\"\" positioning_phone=\"none\" positioning_last_edited=\"on|phone\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\" positioning=\"none\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" url=\"https://capitalbookkeepingco.com/\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.6\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" hover_enabled=\"0\" custom_css_main_element=\"float:right;\" global_colors_info=\"{}\" overflow-x=\"visible\" overflow-y=\"visible\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-16 15:26:04','2022-01-16 15:26:04','',152,'https://capitalbookkeepingco.com/?p=383',0,'revision','',0),(394,1,'2022-01-16 16:09:05','2022-01-16 16:09:05','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:09:05','2022-01-16 16:09:05','',5,'https://capitalbookkeepingco.com/?p=394',0,'revision','',0),(388,1,'2022-01-16 16:04:39','2022-01-16 16:04:39','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.et_pb_menu .et-menu-nav>ul ul {\r\n    padding: 20px 0;\r\n    text-align: left;\r\n    width: 300px;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:04:39','2022-01-16 16:04:39','',5,'https://capitalbookkeepingco.com/?p=388',0,'revision','',0),(392,1,'2022-01-16 16:08:33','2022-01-16 16:08:33','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.et_pb_menu .et-menu-nav>ul ul {\r\n    padding: 20px 0;\r\n    text-align: left;\r\n    width: 350px;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:08:33','2022-01-16 16:08:33','',5,'https://capitalbookkeepingco.com/?p=392',0,'revision','',0),(390,1,'2022-01-16 16:07:28','2022-01-16 16:07:28','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.et_pb_menu .et-menu-nav>ul ul {\r\n    padding: 20px 0;\r\n    text-align: left;\r\n    width: 350px;\r\n}\r\n\r\nelement.style {\r\n}\r\n\r\n.et_pb_menu_0_tb_header.et_pb_menu ul li a {\r\n    font-weight: 700;\r\n    text-transform: uppercase;\r\n    font-size: 18px;\r\n    letter-spacing: 1.5px;\r\n    width: 320px;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:07:28','2022-01-16 16:07:28','',5,'https://capitalbookkeepingco.com/?p=390',0,'revision','',0),(389,1,'2022-01-16 16:07:10','2022-01-16 16:07:10','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.et_pb_menu .et-menu-nav>ul ul {\r\n    padding: 20px 0;\r\n    text-align: left;\r\n    width: 350px;\r\n}\r\n\r\nelement.style {\r\n}\r\n.et_pb_menu_0_tb_header.et_pb_menu ul li.current-menu-item a {\r\n    color: #0C71C3!important;\r\n}\r\n.et_pb_menu_0_tb_header.et_pb_menu ul li a {\r\n    font-weight: 700;\r\n    text-transform: uppercase;\r\n    font-size: 18px;\r\n    letter-spacing: 1.5px;\r\n    width: 320px;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:07:10','2022-01-16 16:07:10','',5,'https://capitalbookkeepingco.com/?p=389',0,'revision','',0),(391,1,'2022-01-16 16:08:00','2022-01-16 16:08:00','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.et_pb_menu .et-menu-nav>ul ul {\r\n    padding: 20px 0;\r\n    text-align: left;\r\n    width: 350px;\r\n}\r\n\r\nelement.style {\r\n}\r\n\r\n.et_pb_menu ul li a {\r\n    font-weight: 700;\r\n    text-transform: uppercase;\r\n    font-size: 18px;\r\n    letter-spacing: 1.5px;\r\n    width: 320px;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:08:00','2022-01-16 16:08:00','',5,'https://capitalbookkeepingco.com/?p=391',0,'revision','',0),(393,1,'2022-01-16 16:08:51','2022-01-16 16:08:51','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.et-menu-nav>ul ul {\r\n    padding: 20px 0;\r\n    text-align: left;\r\n    width: 350px;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:08:51','2022-01-16 16:08:51','',5,'https://capitalbookkeepingco.com/?p=393',0,'revision','',0),(395,1,'2022-01-16 16:54:43','2022-01-16 16:54:43','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.et_pb_menu_0_tb_header.et_pb_menu .nav li ul, .et_pb_menu_0_tb_header.et_pb_menu .et_mobile_menu, .et_pb_menu_0_tb_header.et_pb_menu .et_mobile_menu ul {\r\n     width: 350px;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:54:43','2022-01-16 16:54:43','',5,'https://capitalbookkeepingco.com/?p=395',0,'revision','',0),(397,1,'2022-01-16 16:56:37','2022-01-16 16:56:37','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.nav li ul {\r\n     width: 350px !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:56:37','2022-01-16 16:56:37','',5,'https://capitalbookkeepingco.com/?p=397',0,'revision','',0),(396,1,'2022-01-16 16:55:11','2022-01-16 16:55:11','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.et_pb_menu_0_tb_header.et_pb_menu .nav li ul, .et_pb_menu_0_tb_header.et_pb_menu .et_mobile_menu, .et_pb_menu_0_tb_header.et_pb_menu .et_mobile_menu ul {\r\n     width: 350px !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:55:11','2022-01-16 16:55:11','',5,'https://capitalbookkeepingco.com/?p=396',0,'revision','',0),(398,1,'2022-01-16 16:57:20','2022-01-16 16:57:20','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.nav li ul.nav li li  {\r\n     width: 350px !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 16:57:20','2022-01-16 16:57:20','',5,'https://capitalbookkeepingco.com/?p=398',0,'revision','',0),(399,1,'2022-01-16 17:00:17','2022-01-16 17:00:17','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.nav li ul {\r\n     width: 350px !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 17:00:17','2022-01-16 17:00:17','',5,'https://capitalbookkeepingco.com/?p=399',0,'revision','',0),(407,1,'2022-01-16 17:20:25','2022-01-16 17:20:25','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 17:20:25','2022-01-16 17:20:25','',5,'https://capitalbookkeepingco.com/?p=407',0,'revision','',0),(400,1,'2022-01-16 17:03:11','2022-01-16 17:03:11','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.nav li ul {\r\n     width: 350px !important;\r\n}\r\n.nav li li {     width: 320px !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 17:03:11','2022-01-16 17:03:11','',5,'https://capitalbookkeepingco.com/?p=400',0,'revision','',0),(402,1,'2022-01-16 17:07:20','2022-01-16 17:07:20','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.nav li ul {\r\n     width: 350px !important;\r\n}\r\n .nav ul li  {     width: 320px !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 17:07:20','2022-01-16 17:07:20','',5,'https://capitalbookkeepingco.com/?p=402',0,'revision','',0),(401,1,'2022-01-16 17:06:38','2022-01-16 17:06:38','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.nav li ul {\r\n     width: 350px !important;\r\n}\r\n .nav ul li a:hover {     width: 320px !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 17:06:38','2022-01-16 17:06:38','',5,'https://capitalbookkeepingco.com/?p=401',0,'revision','',0),(403,1,'2022-01-16 17:11:09','2022-01-16 17:11:09','/* ######  PERSON MODULE 5  ##### */\r\n\r\n.person_module_5 .et_pb_team_member_description {\r\n	position: absolute;\r\n    top: 0px;\r\n    height: 100%;\r\n	width: 100%;\r\n	padding: 35px;\r\n	background-color: rgba(0, 0, 0, 0.50);\r\n	opacity:0;\r\n	-webkit-transition: all .3s ease-in-out !important;\r\n	-moz-transition: all 0.3s ease-in-out!important;\r\n	-ms-transition: all 0.3s ease-in-out!important;\r\n	-o-transition: all 0.3s ease-in-out!important;\r\n	transition: all 0.3s ease-in-out!important;\r\n}\r\n\r\n.person_module_5:hover .et_pb_team_member_description {\r\n	opacity:1;\r\n}\r\n\r\n.person_module_5 .et_pb_team_member_image {\r\n	margin-bottom: 0px;\r\n}\r\n\r\n@media (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	max-width: 100%;		\r\n}}\r\n\r\n@media (min-width: 768px) and (max-width: 980px) {\r\n.person_module_5 .et_pb_team_member_image {\r\n	width: 100%;		\r\n}}\r\n\r\n/* ######  PERSON MODULE 2  ##### */\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n    max-width: 100%;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_description {\r\nbackground: rgba(0,0,0,.75);\r\n    color: #fff;\r\n    padding: 47px 4px;\r\n    position: absolute;\r\n    left: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    -webkit-transform: translateY(100%);\r\n    -ms-transform: translateY(100%);\r\n    transform: translateY(100%);\r\n    opacity: 0;\r\n    -webkit-transition: all 0.5s ease-in-out;\r\n    -o-transition: all 0.5s ease-in-out;\r\n    transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.person_module_2:hover .et_pb_team_member_description {\r\n    -webkit-transform: translateY(0%);\r\n    -ms-transform: translateY(0%);\r\n    transform: translateY(0%);\r\n    opacity: 1;\r\n}\r\n\r\n.person_module_2 .et_pb_team_member_image {\r\n	margin-bottom: 0px !important;\r\n}\r\n.person_module_2 {\r\n	overflow: hidden !important;\r\n}\r\n.nav li ul {\r\n     width: 350px !important;\r\n}\r\n .nav ul li{width: 320px !important;\r\n}','Divi_Child','','inherit','closed','closed','','5-revision-v1','','','2022-01-16 17:11:09','2022-01-16 17:11:09','',5,'https://capitalbookkeepingco.com/?p=403',0,'revision','',0),(438,1,'2022-01-22 21:10:37','2022-01-22 21:10:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"70px||70px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 21:10:37','2022-01-22 21:10:37','',109,'https://capitalbookkeepingco.com/?p=438',0,'revision','',0),(429,1,'2022-01-22 20:54:19','2022-01-22 20:54:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Let Us Take A look\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" background_color_gradient_end_position=\"55%\" sticky_enabled=\"0\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" custom_padding=\"70px||70px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" sticky_enabled=\"0\" background_enable_image=\"off\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"#d3d3d3\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 20:54:19','2022-01-22 20:54:19','',109,'https://capitalbookkeepingco.com/?p=429',0,'revision','',0),(417,1,'2022-01-22 20:37:14','2022-01-22 20:37:14','','Trena3891-Editcrop1','','inherit','open','closed','','trena3891-editcrop1','','','2022-01-22 20:37:14','2022-01-22 20:37:14','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg',0,'attachment','image/jpeg',0),(418,1,'2022-01-22 20:38:41','2022-01-22 20:38:41','','Trena3891-Editcrop2','','inherit','open','closed','','trena3891-editcrop2','','','2022-01-22 20:38:41','2022-01-22 20:38:41','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg',0,'attachment','image/jpeg',0),(405,1,'2022-01-16 17:20:15','2022-01-16 17:20:15','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.6\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" positioning=\"none\" position_origin_a_tablet=\"\" position_origin_a_phone=\"\" position_origin_a_last_edited=\"on|phone\" position_origin_f_tablet=\"\" position_origin_f_phone=\"\" position_origin_f_last_edited=\"on|phone\" position_origin_r_tablet=\"\" position_origin_r_phone=\"\" position_origin_r_last_edited=\"on|phone\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"visible\" overflow-y=\"visible\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" positioning_tablet=\"\" positioning_phone=\"none\" positioning_last_edited=\"on|phone\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" url=\"https://capitalbookkeepingco.com/\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.6\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"#FFFFFF\" overflow-x=\"visible\" overflow-y=\"visible\" hover_enabled=\"0\" custom_css_main_element=\"float:right;||\" global_colors_info=\"{}\" custom_css_dropdown_container=\"width: 350px !important;\" custom_css_dropdown_links=\"width: 320px !important;\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-16 17:20:15','2022-01-16 17:20:15','',152,'https://capitalbookkeepingco.com/?p=405',0,'revision','',0),(408,1,'2022-01-16 20:44:20','2022-01-16 20:44:20','[et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"RGBA(255,255,255,0)\" background_color_2=\"RGBA(255,255,255,0)\" padding_top_bottom_link_1=\"true\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_right_1=\"0px\" padding_right_2=\"0px\" padding_bottom_1=\"0px\" padding_bottom_2=\"0px\" padding_left_1=\"0px\" padding_left_2=\"0px\" _builder_version=\"4.14.6\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" positioning=\"none\" position_origin_a_tablet=\"\" position_origin_a_phone=\"\" position_origin_a_last_edited=\"on|phone\" position_origin_f_tablet=\"\" position_origin_f_phone=\"\" position_origin_f_last_edited=\"on|phone\" position_origin_r_tablet=\"\" position_origin_r_phone=\"\" position_origin_r_last_edited=\"on|phone\" inner_width=\"100%\" inner_max_width=\"100%\" overflow-x=\"visible\" overflow-y=\"visible\" custom_padding=\"0px||0px||true|false\" sticky_position=\"top\" positioning_tablet=\"\" positioning_phone=\"none\" positioning_last_edited=\"on|phone\" border_width_bottom=\"1px\" box_shadow_style=\"preset2\" global_colors_info=\"{}\" background__sticky_enabled=\"on|sticky\" background_color__sticky=\"#FFFFFF\" background_enable_color__sticky=\"on\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" url=\"https://capitalbookkeepingco.com/\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"100%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Call Now\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf879;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>250-707-8290</p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blurb title=\"Working Hours\" url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xe06b;||divi||400\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_color=\"#0C71C3\" header_line_height=\"0.7em\" body_line_height=\"0.7em\" background_color=\"RGBA(255,255,255,0)\" link_option_url=\"https://goo.gl/maps/834z4kJvMoW1YpNr9\" link_option_url_new_window=\"on\" border_width_bottom=\"5px\" border_color_bottom=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"]<p>M-F: 9am-5pm, S-S: Closed</p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" width=\"90%\" max_width=\"90%\" module_alignment=\"center\" custom_padding=\"10px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"3_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#0C71C3\" show_search_icon=\"on\" _builder_version=\"4.14.6\" _module_preset=\"default\" menu_font=\"|700||on|||||\" menu_font_size=\"18px\" menu_letter_spacing=\"1.5px\" background_color=\"#FFFFFF\" overflow-x=\"visible\" overflow-y=\"visible\" hover_enabled=\"0\" custom_css_main_element=\"float:right;||\" global_colors_info=\"{}\" custom_css_dropdown_container=\"width: 350px !important;\" custom_css_dropdown_links=\"width: 320px !important;\" sticky_enabled=\"0\" custom_css_dropdown_container_last_edited=\"on|phone\" custom_css_dropdown_container_tablet=\" \" custom_css_dropdown_links_last_edited=\"on|tablet\" custom_css_dropdown_links_phone=\" \" custom_css_dropdown_links_tablet=\" \" custom_css_dropdown_container_phone=\" \"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','152-revision-v1','','','2022-01-16 20:44:20','2022-01-16 20:44:20','',152,'https://capitalbookkeepingco.com/?p=408',0,'revision','',0),(427,1,'2022-01-22 20:50:36','2022-01-22 20:50:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Let Us Take A look\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" background_color_gradient_end_position=\"55%\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" custom_padding=\"100px||100px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" sticky_enabled=\"0\" background_enable_image=\"off\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 20:50:36','2022-01-22 20:50:36','',109,'https://capitalbookkeepingco.com/?p=427',0,'revision','',0),(422,1,'2022-01-22 20:44:26','2022-01-22 20:44:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"About\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/close-up-busy-businesswoman-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"100px||100px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#c6c6c6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"200px||200px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shopping and budgeting financial concept\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Culture</h3>\n<div>\n<p>Our organizational philosophy includes The Four Agreements, which we take very seriously and to heart.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 20:44:26','2022-01-22 20:44:26','',109,'https://capitalbookkeepingco.com/?p=422',0,'revision','',0),(423,1,'2022-01-22 20:45:42','2022-01-22 20:45:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"About\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/close-up-busy-businesswoman-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"100px||100px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#808080\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"200px||200px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shopping and budgeting financial concept\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Culture</h3>\n<div>\n<p>Our organizational philosophy includes The Four Agreements, which we take very seriously and to heart.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 20:45:42','2022-01-22 20:45:42','',109,'https://capitalbookkeepingco.com/?p=423',0,'revision','',0),(444,1,'2022-01-23 16:45:20','2022-01-23 16:45:20','','','','inherit','open','closed','','cathe','','','2022-02-05 16:11:43','2022-02-05 16:11:43','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg',0,'attachment','image/jpeg',0),(445,1,'2022-01-23 16:45:44','2022-01-23 16:45:44','','','','inherit','open','closed','','julie','','','2022-02-05 15:40:35','2022-02-05 15:40:35','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg',0,'attachment','image/jpeg',0),(446,1,'2022-01-23 16:45:48','2022-01-23 16:45:48','','Sara','','inherit','open','closed','','sara','','','2022-01-23 16:45:48','2022-01-23 16:45:48','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg',0,'attachment','image/jpeg',0),(447,1,'2022-01-23 16:45:52','2022-01-23 16:45:52','','Trena3891-Editcrop','','inherit','open','closed','','trena3891-editcrop','','','2022-01-23 16:45:52','2022-01-23 16:45:52','',0,'https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop.jpg',0,'attachment','image/jpeg',0),(425,1,'2022-01-22 20:46:14','2022-01-22 20:46:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"About\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/close-up-busy-businesswoman-scaled.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"100px||100px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop2\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0.54)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/shopping-budgeting-financial-concept.jpg\" custom_padding=\"200px||200px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shopping and budgeting financial concept\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<h3 class=\"et_pb_module_header\">Culture</h3>\n<div>\n<p>Our organizational philosophy includes The Four Agreements, which we take very seriously and to heart.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-22 20:46:14','2022-01-22 20:46:14','',109,'https://capitalbookkeepingco.com/?p=425',0,'revision','',0),(433,1,'2022-01-22 20:58:18','2022-01-22 20:58:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','team','','publish','closed','closed','','team','','','2022-01-22 20:58:18','2022-01-22 20:58:18','',0,'https://capitalbookkeepingco.com/et_pb_layout/team/',0,'et_pb_layout','',0),(465,1,'2022-01-31 19:37:20','2022-01-31 19:37:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#FFFFFF\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_bottom_1=\"0px\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px|true|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2>No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based  business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.7\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||0px||false|false\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Trena3891-Editcrop\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Julie\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Cathe\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Sara\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-31 19:37:20','2022-01-31 19:37:20','',89,'https://capitalbookkeepingco.com/?p=465',0,'revision','',0),(434,1,'2022-01-22 21:03:06','2022-01-22 21:03:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px|true|false\" hover_enabled=\"0\" make_fullwidth=\"on\" global_colors_info=\"{}\" padding_bottom_1=\"0px\" sticky_enabled=\"0\" background_color_1=\"#FFFFFF\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2>No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based  business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.7\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||0px||false|false\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-22 21:03:06','2022-01-22 21:03:06','',89,'https://capitalbookkeepingco.com/?p=434',0,'revision','',0),(442,1,'2022-01-23 15:58:59','2022-01-23 15:58:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"70px||70px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" width=\"100%\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena-Smith-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" position=\"Founder\" sticky_enabled=\"0\" position_text_align=\"center\" position_text_color=\"#000000\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p> Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>Contact Trena today to get some clarity on your financial goals at 250- or email at trena@capitalbookkeepingco.com</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" position=\"Team Manager\" sticky_enabled=\"0\" position_text_align=\"center\" position_text_color=\"#000000\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursed a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small business in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>\n<p>Contact Julie today to get some clarity on your financial goals at 250-801-8605 or email at <span><a href=\"mailto:julie@capitalbookkeepingco.com\">julie@capitalbookkeepingco.com</a></span></p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathie-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" position=\"Bookkeeper\" sticky_enabled=\"0\" position_text_align=\"center\" position_text_color=\"#000000\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>\n<p>Contact Cathie today to get some clarity on your financial goals at 250- or email at cathie@capitalbookkeepingco.com</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara-scaled.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" position=\"Bookkeeper\" position_text_align=\"center\" position_text_color=\"#000000\" sticky_enabled=\"0\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>\n<p>Contact Sarah today to get some clarity on your financial goals at 250- or email at <a href=\"mailto:sarah@capitalbookkeepingco.com\">sarah@capitalbookkeepingco.com</a></p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-23 15:58:59','2022-01-23 15:58:59','',109,'https://capitalbookkeepingco.com/?p=442',0,'revision','',0),(450,1,'2022-01-23 16:57:10','2022-01-23 16:57:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"70px||70px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-23 16:57:10','2022-01-23 16:57:10','',109,'https://capitalbookkeepingco.com/?p=450',0,'revision','',0),(448,1,'2022-01-23 16:54:47','2022-01-23 16:54:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"70px||70px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2 class=\"et_pb_module_header\">Capital Bookkeeping</h2>\n<div>\n<p>Capital Bookkeeping is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" width=\"100%\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|desktop\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" max_width=\"90%\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" position=\"Founder\" sticky_enabled=\"0\" position_text_align=\"left\" position_text_color=\"#000000\" header_font_size=\"40px\" background_color=\"#FFFFFF\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" custom_margin_last_edited=\"on|desktop\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" position_font=\"|300|||||||\" position_font_size=\"15px\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_text=\"Trena3891-Editcrop1\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||||false|false\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" width=\"100%\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|desktop\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" max_width=\"90%\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_text=\"Julie\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||||false|false\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" position=\"Team Manager\" sticky_enabled=\"0\" position_text_align=\"left\" position_text_color=\"#000000\" header_font_size=\"40px\" background_color=\"#FFFFFF\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" custom_margin_last_edited=\"on|desktop\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" position_font=\"|300|||||||\" position_font_size=\"15px\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" width=\"100%\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|desktop\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" max_width=\"90%\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" position=\"Bookkeeper\" sticky_enabled=\"0\" position_text_align=\"left\" position_text_color=\"#000000\" header_font_size=\"40px\" background_color=\"#FFFFFF\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" custom_margin_last_edited=\"on|desktop\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" position_font=\"|300|||||||\" position_font_size=\"15px\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_text=\"Cathe\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||||false|false\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" width=\"100%\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|desktop\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" max_width=\"90%\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_text=\"Sara\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||||false|false\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" position=\"Bookkeeper\" sticky_enabled=\"0\" position_text_align=\"left\" position_text_color=\"#000000\" header_font_size=\"40px\" background_color=\"#FFFFFF\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" custom_margin_last_edited=\"on|desktop\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" position_font=\"|300|||||||\" position_font_size=\"15px\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-23 16:54:47','2022-01-23 16:54:47','',109,'https://capitalbookkeepingco.com/?p=448',0,'revision','',0),(458,1,'2022-01-24 22:36:04','2022-01-24 22:36:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>Capital Bookkeeping Co.focuses on bookkeeping firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped businesses handle their bookkeeping and payroll remittances. She has over 15 years of working experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping Co. has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Some other experienced bookkeepers that would be pleased to work with you at Capital Bookkeeping are Sarah Ward and Cathie McConnel. Both ladies have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us to get the best services in bookkeeping and payroll remittances in the beautiful city of Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a title=\"Get Help Now!\" href=\"/contact-us/\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-24 22:36:04','2022-01-24 22:36:04','',109,'https://capitalbookkeepingco.com/?p=458',0,'revision','',0),(453,1,'2022-01-24 16:39:07','2022-01-24 16:39:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Problems?\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" subhead=\"Let Us Take A look\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" title_line_height=\"1.7em\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>Capital Bookkeeping is an accounting firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped business firms handle their bookkeeping and payroll remittances. She has over 15 years of working experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Some other experienced bookkeepers that would be pleased to work with you at Capital Bookkeeping are Sarah Ward and Cathie McConnel. Both ladies have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us to get the best services in bookkeeping and payroll remittances in the beautiful city of Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a href=\"/contact-us/\" title=\"Get Help Now!\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" sticky_enabled=\"0\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-24 16:39:07','2022-01-24 16:39:07','',109,'https://capitalbookkeepingco.com/?p=453',0,'revision','',0),(452,1,'2022-01-24 16:38:43','2022-01-24 16:38:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Problems?\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" subhead=\"Let Us Take A look\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" title_line_height=\"1.7em\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>Capital Bookkeeping is an accounting firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped business firms handle their bookkeeping and payroll remittances. She has over 15 years of working experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Some other experienced bookkeepers that would be pleased to work with you at Capital Bookkeeping are Sarah Ward and Cathie McConnel. Both ladies have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us to get the best services in bookkeeping and payroll remittances in the beautiful city of Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a href=\"/contact-us/\" title=\"Get Help Now!\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-24 16:38:43','2022-01-24 16:38:43','',109,'https://capitalbookkeepingco.com/?p=452',0,'revision','',0),(457,1,'2022-01-24 22:33:08','2022-01-24 22:33:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>Capital Bookkeeping Co.focuses on bookkeeping firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped businesses handle their bookkeeping and payroll remittances. She has over 15 years of working experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping Co. has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Some other experienced bookkeepers that would be pleased to work with you at Capital Bookkeeping are Sarah Ward and Cathie McConnel. Both ladies have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us to get the best services in bookkeeping and payroll remittances in the beautiful city of Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a title=\"Get Help Now!\" href=\"/contact-us/\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-24 22:33:08','2022-01-24 22:33:08','',109,'https://capitalbookkeepingco.com/?p=457',0,'revision','',0),(456,1,'2022-01-24 21:23:37','2022-01-24 21:23:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Problems?\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>Capital Bookkeeping Co.focuses on bookkeeping firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped businesses handle their bookkeeping and payroll remittances. She has over 15 years of working experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping Co. has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Some other experienced bookkeepers that would be pleased to work with you at Capital Bookkeeping are Sarah Ward and Cathie McConnel. Both ladies have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us to get the best services in bookkeeping and payroll remittances in the beautiful city of Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a title=\"Get Help Now!\" href=\"/contact-us/\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-24 21:23:37','2022-01-24 21:23:37','',109,'https://capitalbookkeepingco.com/?p=456',0,'revision','',0),(461,1,'2022-01-24 22:50:30','2022-01-24 22:50:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>Capital Bookkeeping Co. focuses on bookkeeping firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped businesses manage their bookkeeping and payroll remittances. She has over 15 years experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping Co. has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Our other experienced bookkeepers at Capital Bookkeeping are Sarah Ward and Cathie McConnel. Both of these professionals have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us  for the best services in bookkeeping services and payroll remittances in  Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a title=\"Get Help Now!\" href=\"/contact-us/\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-24 22:50:30','2022-01-24 22:50:30','',109,'https://capitalbookkeepingco.com/?p=461',0,'revision','',0),(460,1,'2022-01-24 22:50:03','2022-01-24 22:50:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>Capital Bookkeeping Co. focuses on bookkeeping firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped businesses manage their bookkeeping and payroll remittances. She has over 15 years experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping Co. has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Our other experienced bookkeepers at Capital Bookkeeping are Sarah Ward and Cathie McConnel. Both of these professionals have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us  for the best services in bookkeeping services and payroll remittances in  Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a title=\"Get Help Now!\" href=\"/contact-us/\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-01-24 22:50:03','2022-01-24 22:50:03','',109,'https://capitalbookkeepingco.com/?p=460',0,'revision','',0),(468,1,'2022-01-31 19:48:51','2022-01-31 19:48:51','[et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.83)\" background_color_gradient_end=\"rgba(0,0,0,0.83)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"20%\" background_color_gradient_end_position=\"45%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"||5px||false|false\" hover_enabled=\"0\" border_width_top=\"2px\" border_color_top=\"#0C71C3\" global_colors_info=\"{}\" positioning=\"none\" sticky_enabled=\"0\" custom_margin=\"||0px||false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"center\" header_3_text_color=\"#FFFFFF\" text_orientation=\"center\" custom_margin=\"||0px||false|false\" global_colors_info=\"{}\"]<h3>Have Question?</h3>[/et_pb_text][et_pb_contact_form email=\"capitalbookkeepingco@outlook.com,info@localmarketingplus.ca\" custom_message=\"Name:%%Name%%||et_pb_line_break_holder||Contact No: %%mobile%%||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||Message: %%Message%%\" _builder_version=\"4.14.7\" _module_preset=\"default\" _unique_id=\"504d6071-0044-4a6c-87ef-c31559eb50eb\" captcha_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"mobile\" field_title=\"Phone No\" allowed_symbols=\"numbers\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.14.2\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.14.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" border_color_bottom=\"#0C71C3\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Recent Blog</h3>[/et_pb_text][et_pb_sidebar area=\"et_pb_widget_area_1\" _builder_version=\"4.14.2\" _module_preset=\"default\" header_text_color=\"RGBA(255,255,255,0)\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_sidebar][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_font=\"|700|||||||\" header_3_text_align=\"left\" header_3_text_color=\"#0C71C3\" global_colors_info=\"{}\"]<h3>Get Connected</h3>[/et_pb_text][et_pb_social_media_follow _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/Capital-Bookkeeping-Co-826640307692771\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_blurb title=\"250-707-8290\" url=\"tel:250-707-8290\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf2a0;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" link_option_url=\"tel:250-707-8290\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"M-F: 9am-5pm, S-S: Closed\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"&#xf017;||fa||900\" icon_color=\"#0C71C3\" icon_placement=\"left\" _builder_version=\"4.14.5\" _module_preset=\"default\" background_layout=\"dark\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner disabled_on=\"on|on|off\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_padding=\"10px||10px||true|false\" border_width_top=\"2px\" border_color_top=\"#FFFFFF\" border_width_bottom=\"2px\" border_color_bottom=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#0C71C3\" _builder_version=\"4.14.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"16px\" menu_letter_spacing=\"1.5px\" background_color=\"RGBA(255,255,255,0)\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.14.2\" _module_preset=\"default\" custom_padding=\"5px||5px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"2_3\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" background_layout=\"dark\" global_colors_info=\"{}\"]<p>All Rights Reserved By CAPITAL Bookkeeping Co. | Designed By Local Marketing Plus | Sitemap</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','185-revision-v1','','','2022-01-31 19:48:51','2022-01-31 19:48:51','',185,'https://capitalbookkeepingco.com/?p=468',0,'revision','',0),(472,1,'2022-02-05 15:44:24','2022-02-05 15:44:24',' ','','','publish','closed','closed','','472','','','2022-02-05 15:44:24','2022-02-05 15:44:24','',0,'https://capitalbookkeepingco.com/?p=472',6,'nav_menu_item','',0),(473,1,'2022-02-05 15:40:44','2022-02-05 15:40:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>Capital Bookkeeping Co. focuses on bookkeeping firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped businesses manage their bookkeeping and payroll remittances. She has over 15 years experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping Co. has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Our other experienced bookkeepers at Capital Bookkeeping are Sarah Ward and Cathie McConnel. Both of these professionals have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us  for the best services in bookkeeping services and payroll remittances in  Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a title=\"Get Help Now!\" href=\"/contact-us/\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-02-05 15:40:44','2022-02-05 15:40:44','',109,'https://capitalbookkeepingco.com/?p=473',0,'revision','',0),(479,1,'2022-02-05 16:36:26','2022-02-05 16:36:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" text_font_size=\"16px\" text_letter_spacing=\"1px\" text_line_height=\"1.6em\" global_colors_info=\"{}\" custom_padding=\"||0px|||\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-02-05 16:36:26','2022-02-05 16:36:26','',109,'https://capitalbookkeepingco.com/?p=479',0,'revision','',0),(474,1,'2022-02-05 15:44:14','2022-02-05 15:44:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_font_size=\"16px\" text_line_height=\"1.6em\" text_letter_spacing=\"1px\" sticky_enabled=\"0\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>Capital Bookkeeping Co. focuses on bookkeeping firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped businesses manage their bookkeeping and payroll remittances. She has over 15 years experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping Co. has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Our other experienced bookkeepers at Capital Bookkeeping are Sarah Ward and Cathie McConnel. Both of these professionals have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us  for the best services in bookkeeping services and payroll remittances in  Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a title=\"Get Help Now!\" href=\"/contact-us/\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-02-05 15:44:14','2022-02-05 15:44:14','',109,'https://capitalbookkeepingco.com/?p=474',0,'revision','',0);
INSERT INTO `wpvu_posts` VALUES (485,2,'2022-02-15 23:42:22','2022-02-15 23:42:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#FFFFFF\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_bottom_1=\"0px\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px|true|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2>No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based  business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.7\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||0px||false|false\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena \" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion_item open=\"on\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_css_main_element=\"display:none;\" global_colors_info=\"{}\"][/et_pb_accordion_item][et_pb_accordion_item title=\"Kelowna BC \" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<p>Ever searched for a place with pleasing scenery, beautiful weather in all four seasons, also having several amenities you can\'t run tired of? Search no more. Kelowna is just the place for you. From excellent health care to an exceptional educational system and fun recreational activities for the whole family to enjoy, Kelowna is sure to live up to all reasonable expectations.</p>\n<p>Kelowna is famous for its exquisite wineries, beautiful landscape of high mountains, orchards, pine forest, and vast vineyards. It is very well a paradise, located in southern Canada in the Okanagan Valley.</p>\n<ul>\n<li><strong> Its People</strong></li>\n</ul>\n<p>Over the last years, the increasing population in the city is a clear indication of how much wonder the city has to offer as more people come to love it. It\'s, in fact, one of the fastest-growing cities in Canada. Meeting new people is one of the best experiences you\'re sure to have in Kelowna. Coming across someone with similar interests and backgrounds as you is a given. Its people are hospitable and not afraid to help a stranger find their way around.</p>\n<ul>\n<li><strong>Its Weather</strong></li>\n</ul>\n<p>The weather is satisfactory for a city where the summer temperature stays around thirty degrees Celsius on average. In all four seasons, the sheer ambiance of the town remains marvelous. The winters are freezing but mild, the autumns are dry for some and inspirational for most as it\'s filled with vibrant colors, while the spring and summer months are pleasant and warm, which tourists from all spheres of the earth find most welcoming.</p>\n<ul>\n<li><strong>The Recreational Opportunities</strong></li>\n</ul>\n<p>Whether indoor or outdoor, Kelowna offers fun recreational activities that you\'re sure to love one or more. What sport do you fancy doing the most? Is it snowboarding and skiing? If yes, Kelowna has you covered. You\'re also welcomed to go mountain biking and hike at the Myra Canyon Trestles. Are you a fan of golf? You can always try out the world-class championship courses such as The Harvest Golf Club, The Kelowna Golf and Country Club, and Gallagher\'s Canyon. As you can imagine, there are many more activities for you to enjoy.</p>\n<ul>\n<li><strong>The Job Market</strong></li>\n</ul>\n<p>It\'s no surprise that Kelowna was ranked #1 in the competitive job market, having an unemployment rate as low as 7.4%. It\'s not only an exciting place to live but also a great place to work. The city\'s steady growth has presented employment opportunities in health care, manufacturing, technology, construction, and agriculture. Thanks to online sources and job boards like Workopolis, Kijiji, etc., the job market is easy to navigate. Also, big businesses like UBC-Okanagan, Kelowna International Airport, Okanagan College, and Interior Health have made Kelowna\'s economy strong, positively affecting the Job Market.</p>\n<ul>\n<li><strong>The Wine</strong></li>\n</ul>\n<p>Kelowna is most famous for its vineyards and wineries. The area produces the second-largest amount of wine in Canada. If you\'re a lover of wine, then you would most certainly be a lover of Kelowna. With vineyards of approximately 10,000 acres, it accounts for over 85% of all wine made in British Columbia. Hundreds of wineries can be located in the Okanagan region, which gives you the pleasure of attending unique tours and continually trying out the latest varieties.</p>\n<p>&nbsp;</p>\n<p><strong>Frequently Asked Questions</strong></p>\n<ol>\n<li><strong> What is Kelowna renowned for?</strong></li>\n</ol>\n<p>Kelowna is renowned for its internationally recognized and award-winning vineyards and wineries, and this gives a lot of pride to the local wine industry. It\'s hard to find a wine made outside of the Okanagan at a local gathering.</p>\n<ol start=\"2\">\n<li><strong> What recreational &amp; fun activities can one partake in Kelowna?</strong></li>\n</ol>\n<p>There are several recreational and fun activities that one can partake in Kelowna. The mountains are great for hiking and mountain biking. One can go ice-skating, and threat golfing facilities are there to enjoy. Skiing, snowboarding, and other exciting sports like football are also great to partake in and enjoy.</p>\n<ol start=\"3\">\n<li><strong> What\'s the buzz about Kelowna &amp; wine?</strong></li>\n</ol>\n<p>Well, that\'s not shocking with the vast vineyards and numerous wineries the city has to offer. Kelowna is internationally recognized as the second-largest producer of wine in Canada, with award-winning vineyards and wineries.</p>\n<ol start=\"4\">\n<li><strong> How easy is it to transit in and out of Kelowna?</strong></li>\n</ol>\n<p>Taking transit in Kelowna is easier than one may think. With several routes, buses, and impressive service hours yearly, transiting in and out of Kelowna is quite convenient. Over five million trips are carried out by transit locally each year.</p>\n<ol start=\"5\">\n<li><strong> How much sunshine does Kelowna enjoy annually &amp; what is the average daily weather like?</strong></li>\n</ol>\n<p>There is a fair amount of sunshine during summer, wintertime can be freezing, and it is crisp and somewhat cloudy all through the year. For the year, the average weather typically ranges between 23°F and 85°F. It also hardly goes below 7°F or anywhere above 94°F.</p>\n<ol start=\"6\">\n<li><strong> What are the medical facilities like in and around Kelowna?</strong></li>\n</ol>\n<p>In such a refined place as Kelowna, it\'s only natural for the medical facilities to be top-notch. There are many medical offices with the best practitioners and specialists In the medical field. The largest and most comprehensive medical facility in the area is the Kelowna General Hospital.</p>\n<ol start=\"7\">\n<li><strong> What are the employment opportunities in Kelowna like?</strong></li>\n</ol>\n<p> Employment opportunities are plentiful in Kelowna due to the steady growth of the city\'s economy.</p>\n<ol start=\"8\">\n<li><strong> How is the nightlife in Kelowna?</strong></li>\n</ol>\n<p>The nightlife in Kelowna is certain to make anyone who visits the city feel like a local. There are many entertainment options that you can enjoy, like live music, theatre, comedy, karaoke, and dance clubs. The night scene is a flourishing mix of friendly neighborhood pubs, ultra-hip discos, elegant lounges, sports bars, vigorous live theatre, and fun music venues.</p>\n<ol start=\"9\">\n<li><strong> What festivities are held in Kelowna?</strong></li>\n</ol>\n<p>Many hold through the year. From Kelowna pride week to Kelowna wine country half marathon, championship tournaments, live outdoor entertainment, and many others.</p>\n<ol start=\"10\">\n<li><strong> What communities &amp; cities are close to Kelowna?</strong></li>\n</ol>\n<p>Peachland, Summerland, Penticton, Vernon, Kaleden, Lumby, Armstrong, Enderby, Oliver, Princeton, Salmon Arm, Osoyoos, Merritt, Coldwater, and Chase. All in Canada.</p>\n<ol start=\"11\">\n<li><strong> How is the traffic situation like in Kelowna on regular days?</strong></li>\n</ol>\n<p>According to a survey carried out last year by the citizens, traffic is a bit of an issue. This inconvenience is due to the increasing population in the city. New measures are being carried out to ensure an easy traffic flow, which will easily accommodate everyone (new and old).</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-02-15 23:42:22','2022-02-15 23:42:22','',89,'https://capitalbookkeepingco.com/?p=485',0,'revision','',0),(477,1,'2022-02-05 16:12:06','2022-02-05 16:12:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#FFFFFF\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_bottom_1=\"0px\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px|true|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2>No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based  business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.7\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||0px||false|false\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion_item open=\"on\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_css_main_element=\"display:none;\" global_colors_info=\"{}\"][/et_pb_accordion_item][et_pb_accordion_item title=\"Kelowna BC \" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<p>Ever searched for a place with pleasing scenery, beautiful weather in all four seasons, also having several amenities you can\'t run tired of? Search no more. Kelowna is just the place for you. From excellent health care to an exceptional educational system and fun recreational activities for the whole family to enjoy, Kelowna is sure to live up to all reasonable expectations.</p>\n<p>Kelowna is famous for its exquisite wineries, beautiful landscape of high mountains, orchards, pine forest, and vast vineyards. It is very well a paradise, located in southern Canada in the Okanagan Valley.</p>\n<ul>\n<li><strong> Its People</strong></li>\n</ul>\n<p>Over the last years, the increasing population in the city is a clear indication of how much wonder the city has to offer as more people come to love it. It\'s, in fact, one of the fastest-growing cities in Canada. Meeting new people is one of the best experiences you\'re sure to have in Kelowna. Coming across someone with similar interests and backgrounds as you is a given. Its people are hospitable and not afraid to help a stranger find their way around.</p>\n<ul>\n<li><strong>Its Weather</strong></li>\n</ul>\n<p>The weather is satisfactory for a city where the summer temperature stays around thirty degrees Celsius on average. In all four seasons, the sheer ambiance of the town remains marvelous. The winters are freezing but mild, the autumns are dry for some and inspirational for most as it\'s filled with vibrant colors, while the spring and summer months are pleasant and warm, which tourists from all spheres of the earth find most welcoming.</p>\n<ul>\n<li><strong>The Recreational Opportunities</strong></li>\n</ul>\n<p>Whether indoor or outdoor, Kelowna offers fun recreational activities that you\'re sure to love one or more. What sport do you fancy doing the most? Is it snowboarding and skiing? If yes, Kelowna has you covered. You\'re also welcomed to go mountain biking and hike at the Myra Canyon Trestles. Are you a fan of golf? You can always try out the world-class championship courses such as The Harvest Golf Club, The Kelowna Golf and Country Club, and Gallagher\'s Canyon. As you can imagine, there are many more activities for you to enjoy.</p>\n<ul>\n<li><strong>The Job Market</strong></li>\n</ul>\n<p>It\'s no surprise that Kelowna was ranked #1 in the competitive job market, having an unemployment rate as low as 7.4%. It\'s not only an exciting place to live but also a great place to work. The city\'s steady growth has presented employment opportunities in health care, manufacturing, technology, construction, and agriculture. Thanks to online sources and job boards like Workopolis, Kijiji, etc., the job market is easy to navigate. Also, big businesses like UBC-Okanagan, Kelowna International Airport, Okanagan College, and Interior Health have made Kelowna\'s economy strong, positively affecting the Job Market.</p>\n<ul>\n<li><strong>The Wine</strong></li>\n</ul>\n<p>Kelowna is most famous for its vineyards and wineries. The area produces the second-largest amount of wine in Canada. If you\'re a lover of wine, then you would most certainly be a lover of Kelowna. With vineyards of approximately 10,000 acres, it accounts for over 85% of all wine made in British Columbia. Hundreds of wineries can be located in the Okanagan region, which gives you the pleasure of attending unique tours and continually trying out the latest varieties.</p>\n<p>&nbsp;</p>\n<p><strong>Frequently Asked Questions</strong></p>\n<ol>\n<li><strong> What is Kelowna renowned for?</strong></li>\n</ol>\n<p>Kelowna is renowned for its internationally recognized and award-winning vineyards and wineries, and this gives a lot of pride to the local wine industry. It\'s hard to find a wine made outside of the Okanagan at a local gathering.</p>\n<ol start=\"2\">\n<li><strong> What recreational &amp; fun activities can one partake in Kelowna?</strong></li>\n</ol>\n<p>There are several recreational and fun activities that one can partake in Kelowna. The mountains are great for hiking and mountain biking. One can go ice-skating, and threat golfing facilities are there to enjoy. Skiing, snowboarding, and other exciting sports like football are also great to partake in and enjoy.</p>\n<ol start=\"3\">\n<li><strong> What\'s the buzz about Kelowna &amp; wine?</strong></li>\n</ol>\n<p>Well, that\'s not shocking with the vast vineyards and numerous wineries the city has to offer. Kelowna is internationally recognized as the second-largest producer of wine in Canada, with award-winning vineyards and wineries.</p>\n<ol start=\"4\">\n<li><strong> How easy is it to transit in and out of Kelowna?</strong></li>\n</ol>\n<p>Taking transit in Kelowna is easier than one may think. With several routes, buses, and impressive service hours yearly, transiting in and out of Kelowna is quite convenient. Over five million trips are carried out by transit locally each year.</p>\n<ol start=\"5\">\n<li><strong> How much sunshine does Kelowna enjoy annually &amp; what is the average daily weather like?</strong></li>\n</ol>\n<p>There is a fair amount of sunshine during summer, wintertime can be freezing, and it is crisp and somewhat cloudy all through the year. For the year, the average weather typically ranges between 23°F and 85°F. It also hardly goes below 7°F or anywhere above 94°F.</p>\n<ol start=\"6\">\n<li><strong> What are the medical facilities like in and around Kelowna?</strong></li>\n</ol>\n<p>In such a refined place as Kelowna, it\'s only natural for the medical facilities to be top-notch. There are many medical offices with the best practitioners and specialists In the medical field. The largest and most comprehensive medical facility in the area is the Kelowna General Hospital.</p>\n<ol start=\"7\">\n<li><strong> What are the employment opportunities in Kelowna like?</strong></li>\n</ol>\n<p> Employment opportunities are plentiful in Kelowna due to the steady growth of the city\'s economy.</p>\n<ol start=\"8\">\n<li><strong> How is the nightlife in Kelowna?</strong></li>\n</ol>\n<p>The nightlife in Kelowna is certain to make anyone who visits the city feel like a local. There are many entertainment options that you can enjoy, like live music, theatre, comedy, karaoke, and dance clubs. The night scene is a flourishing mix of friendly neighborhood pubs, ultra-hip discos, elegant lounges, sports bars, vigorous live theatre, and fun music venues.</p>\n<ol start=\"9\">\n<li><strong> What festivities are held in Kelowna?</strong></li>\n</ol>\n<p>Many hold through the year. From Kelowna pride week to Kelowna wine country half marathon, championship tournaments, live outdoor entertainment, and many others.</p>\n<ol start=\"10\">\n<li><strong> What communities &amp; cities are close to Kelowna?</strong></li>\n</ol>\n<p>Peachland, Summerland, Penticton, Vernon, Kaleden, Lumby, Armstrong, Enderby, Oliver, Princeton, Salmon Arm, Osoyoos, Merritt, Coldwater, and Chase. All in Canada.</p>\n<ol start=\"11\">\n<li><strong> How is the traffic situation like in Kelowna on regular days?</strong></li>\n</ol>\n<p>According to a survey carried out last year by the citizens, traffic is a bit of an issue. This inconvenience is due to the increasing population in the city. New measures are being carried out to ensure an easy traffic flow, which will easily accommodate everyone (new and old).</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-02-05 16:12:06','2022-02-05 16:12:06','',89,'https://capitalbookkeepingco.com/?p=477',0,'revision','',0),(471,1,'2022-01-31 21:09:56','2022-01-31 21:09:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li><span>Account set up - SAGE/QuickBooks</span></li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable (Paying Invoices)</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non for profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#FFFFFF\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_bottom_1=\"0px\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px|true|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2>No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based  business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.7\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||0px||false|false\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sara\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.7\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_accordion _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_accordion_item _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\" open=\"on\" custom_css_main_element=\"display:none;\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_accordion_item][et_pb_accordion_item title=\"Kelowna BC \" _builder_version=\"4.14.7\" _module_preset=\"default\" theme_builder_area=\"post_content\" open=\"off\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Ever searched for a place with pleasing scenery, beautiful weather in all four seasons, also having several amenities you can\'t run tired of? Search no more. Kelowna is just the place for you. From excellent health care to an exceptional educational system and fun recreational activities for the whole family to enjoy, Kelowna is sure to live up to all reasonable expectations.</p>\n<p>Kelowna is famous for its exquisite wineries, beautiful landscape of high mountains, orchards, pine forest, and vast vineyards. It is very well a paradise, located in southern Canada in the Okanagan Valley.</p>\n<ul>\n<li><strong> Its People</strong></li>\n</ul>\n<p>Over the last years, the increasing population in the city is a clear indication of how much wonder the city has to offer as more people come to love it. It\'s, in fact, one of the fastest-growing cities in Canada. Meeting new people is one of the best experiences you\'re sure to have in Kelowna. Coming across someone with similar interests and backgrounds as you is a given. Its people are hospitable and not afraid to help a stranger find their way around.</p>\n<ul>\n<li><strong>Its Weather</strong></li>\n</ul>\n<p>The weather is satisfactory for a city where the summer temperature stays around thirty degrees Celsius on average. In all four seasons, the sheer ambiance of the town remains marvelous. The winters are freezing but mild, the autumns are dry for some and inspirational for most as it\'s filled with vibrant colors, while the spring and summer months are pleasant and warm, which tourists from all spheres of the earth find most welcoming.</p>\n<ul>\n<li><strong>The Recreational Opportunities</strong></li>\n</ul>\n<p>Whether indoor or outdoor, Kelowna offers fun recreational activities that you\'re sure to love one or more. What sport do you fancy doing the most? Is it snowboarding and skiing? If yes, Kelowna has you covered. You\'re also welcomed to go mountain biking and hike at the Myra Canyon Trestles. Are you a fan of golf? You can always try out the world-class championship courses such as The Harvest Golf Club, The Kelowna Golf and Country Club, and Gallagher\'s Canyon. As you can imagine, there are many more activities for you to enjoy.</p>\n<ul>\n<li><strong>The Job Market</strong></li>\n</ul>\n<p>It\'s no surprise that Kelowna was ranked #1 in the competitive job market, having an unemployment rate as low as 7.4%. It\'s not only an exciting place to live but also a great place to work. The city\'s steady growth has presented employment opportunities in health care, manufacturing, technology, construction, and agriculture. Thanks to online sources and job boards like Workopolis, Kijiji, etc., the job market is easy to navigate. Also, big businesses like UBC-Okanagan, Kelowna International Airport, Okanagan College, and Interior Health have made Kelowna\'s economy strong, positively affecting the Job Market.</p>\n<ul>\n<li><strong>The Wine</strong></li>\n</ul>\n<p>Kelowna is most famous for its vineyards and wineries. The area produces the second-largest amount of wine in Canada. If you\'re a lover of wine, then you would most certainly be a lover of Kelowna. With vineyards of approximately 10,000 acres, it accounts for over 85% of all wine made in British Columbia. Hundreds of wineries can be located in the Okanagan region, which gives you the pleasure of attending unique tours and continually trying out the latest varieties.</p>\n<p>&nbsp;</p>\n<p><strong>Frequently Asked Questions</strong></p>\n<ol>\n<li><strong> What is Kelowna renowned for?</strong></li>\n</ol>\n<p>Kelowna is renowned for its internationally recognized and award-winning vineyards and wineries, and this gives a lot of pride to the local wine industry. It\'s hard to find a wine made outside of the Okanagan at a local gathering.</p>\n<ol start=\"2\">\n<li><strong> What recreational &amp; fun activities can one partake in Kelowna?</strong></li>\n</ol>\n<p>There are several recreational and fun activities that one can partake in Kelowna. The mountains are great for hiking and mountain biking. One can go ice-skating, and threat golfing facilities are there to enjoy. Skiing, snowboarding, and other exciting sports like football are also great to partake in and enjoy.</p>\n<ol start=\"3\">\n<li><strong> What\'s the buzz about Kelowna &amp; wine?</strong></li>\n</ol>\n<p>Well, that\'s not shocking with the vast vineyards and numerous wineries the city has to offer. Kelowna is internationally recognized as the second-largest producer of wine in Canada, with award-winning vineyards and wineries.</p>\n<ol start=\"4\">\n<li><strong> How easy is it to transit in and out of Kelowna?</strong></li>\n</ol>\n<p>Taking transit in Kelowna is easier than one may think. With several routes, buses, and impressive service hours yearly, transiting in and out of Kelowna is quite convenient. Over five million trips are carried out by transit locally each year.</p>\n<ol start=\"5\">\n<li><strong> How much sunshine does Kelowna enjoy annually &amp; what is the average daily weather like?</strong></li>\n</ol>\n<p>There is a fair amount of sunshine during summer, wintertime can be freezing, and it is crisp and somewhat cloudy all through the year. For the year, the average weather typically ranges between 23°F and 85°F. It also hardly goes below 7°F or anywhere above 94°F.</p>\n<ol start=\"6\">\n<li><strong> What are the medical facilities like in and around Kelowna?</strong></li>\n</ol>\n<p>In such a refined place as Kelowna, it\'s only natural for the medical facilities to be top-notch. There are many medical offices with the best practitioners and specialists In the medical field. The largest and most comprehensive medical facility in the area is the Kelowna General Hospital.</p>\n<ol start=\"7\">\n<li><strong> What are the employment opportunities in Kelowna like?</strong></li>\n</ol>\n<p> Employment opportunities are plentiful in Kelowna due to the steady growth of the city\'s economy.</p>\n<ol start=\"8\">\n<li><strong> How is the nightlife in Kelowna?</strong></li>\n</ol>\n<p>The nightlife in Kelowna is certain to make anyone who visits the city feel like a local. There are many entertainment options that you can enjoy, like live music, theatre, comedy, karaoke, and dance clubs. The night scene is a flourishing mix of friendly neighborhood pubs, ultra-hip discos, elegant lounges, sports bars, vigorous live theatre, and fun music venues.</p>\n<ol start=\"9\">\n<li><strong> What festivities are held in Kelowna?</strong></li>\n</ol>\n<p>Many hold through the year. From Kelowna pride week to Kelowna wine country half marathon, championship tournaments, live outdoor entertainment, and many others.</p>\n<ol start=\"10\">\n<li><strong> What communities &amp; cities are close to Kelowna?</strong></li>\n</ol>\n<p>Peachland, Summerland, Penticton, Vernon, Kaleden, Lumby, Armstrong, Enderby, Oliver, Princeton, Salmon Arm, Osoyoos, Merritt, Coldwater, and Chase. All in Canada.</p>\n<ol start=\"11\">\n<li><strong> How is the traffic situation like in Kelowna on regular days?</strong></li>\n</ol>\n<p>According to a survey carried out last year by the citizens, traffic is a bit of an issue. This inconvenience is due to the increasing population in the city. New measures are being carried out to ensure an easy traffic flow, which will easily accommodate everyone (new and old).</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-01-31 21:09:56','2022-01-31 21:09:56','',89,'https://capitalbookkeepingco.com/?p=471',0,'revision','',0),(492,1,'2022-03-10 14:59:50','2022-03-10 14:59:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" text_font_size=\"16px\" text_letter_spacing=\"1px\" text_line_height=\"1.6em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-03-10 14:59:50','2022-03-10 14:59:50','',109,'https://capitalbookkeepingco.com/?p=492',0,'revision','',0),(476,1,'2022-02-05 16:01:04','2022-02-05 16:01:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Bookkeeping Solutions\" subhead=\"Let Us Take A look\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.7\" _module_preset=\"default\" title_line_height=\"1.7em\" subhead_font_size=\"30px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.54)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop2.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"55%\" background_color_gradient_overlays_image=\"on\" background_enable_image=\"off\" custom_padding=\"20px||20px||true|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"90%\" max_width=\"90%\" module_alignment=\"left\" custom_padding=\"|||50px|false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_font_size=\"16px\" text_line_height=\"1.6em\" text_letter_spacing=\"1px\" sticky_enabled=\"0\"]<h2>We Keep Your Accounts Up To Date So You Can Focus On Your Business</h2>\n<p>Capital Bookkeeping Co. focuses on bookkeeping firm in Kelowna, BC that was founded in 2016 by Trena Smith. Trena has a degree in business &amp; accounting and has helped businesses manage their bookkeeping and payroll remittances. She has over 15 years experience in financial statements, business budgeting, and employee payroll.</p>\n<p>Other than the founder, Capital Bookkeeping Co. has a team of experts that are well versed in business and accounting. Team manager, Julie Belgrove, has a diploma in business management and went on to become a certified bookkeeper. Julie has shown her leadership skills by organizing the team and rendering impeccable financial services to corporations, proprietorships, and non-profit organizations.</p>\n<p>Our other experienced bookkeepers at Capital Bookkeeping are Sarah Ward and Cathie MacConnell. Both of these professionals have years of experience in bookkeeping and their flair for calculations makes the job easier for them.</p>\n<p>Get in touch with us  for the best services in bookkeeping services and payroll remittances in  Kelowna.</p>\n<p><strong>Let Us Take A Look ----  <a title=\"Get Help Now!\" href=\"/contact-us/\">Get Help Now!</a></strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#d3d3d3\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_2_font=\"|800|||||||\" header_2_text_align=\"center\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h2>Our Team</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena Smith\" position=\"Founder\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Trena began her career path at Okanagan College for her Business degree with an Accounting designation.  In 2016 Trena started up Capital Bookkeeping and has grown her business to include numerous clients from proprietorships, corporate level and non-profit clients.  She has hired qualified bookkeepers to contribute their gifts to the endeavour.</p>\n<p>Trena has over 15 years of experience in finance and provides a clean, efficient, and high detailed quality to her bookkeeping.  She understands business budgeting, financial statements and payroll.</p>\n<p>When Trena is not immersed in her accounts…oh who are we kidding, Trena is always immersed in bookkeeping.  &#x1f60a;  Actually you might see her at the gym, paddle boarding on Okanagan Lake or spending precious time with her two granddaughters.</p>\n<p>&nbsp;</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop1.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie Belgrove \" position=\"Team Manager\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>After leaving the College of New Caledonia in Prince George with a diploma in Business Management, Julie moved to Vancouver where she pursued a career in banking with the Scotiabank.  Continuing her education to become a certified bookkeeper, she, along with her husband and 2 children moved to the Okanagan where they have lived for over 2 decades.  Julie worked independently as a bookkeeper for their own company along with other small businesses in the Kelowna area until their, now 3, children were in school.  At that time, she entered the work force with the City of Kelowna in various financial roles.  After 8 years she found herself working for one of the fasted growing churches in Kelowna.  Julie gained a great deal of knowledge in the non-profit industry, breaking out on her own after over 10 years with Willow Park Church.  She continued working in the non-profit industry taking on several charities in the Okanagan Valley.  Julie prides herself on providing ethical and transparent financial communication for not only non-profit but all business requirements.</p>\n<p>When Julie isn’t contributing at the office with the team, you will find her on a long walk, harvesting fruit and veggies on their acreage or spending precious time with her family.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie MacConnell \" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|20px|||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||||20px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Cathie was born and raised in the Lower Mainland where she began her career performing administrative and accounts receivable duties. She spent most of her early years employed with a distribution organization working as an Inventory and Purchasing Coordinator. Gifted in numbers she pursued a bookkeeping certification over 30 years ago. She followed that with a Business Management Certification bringing her career into her role of operations manager at an extended care company. She has become a valuable asset to Capital Bookkeeping with her experience in all aspects of business management and budgeting.</p>\n<p>Cathie has recently settled in Kelowna with a summer home on the Shuswap.  When she is not behind her desk you’ll find her with her grandchildren, paddle boarding on the Shuswap lake or buried in a good book.</p>[/et_pb_team_member][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" hover_enabled=\"0\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"4.14.7\" _module_preset=\"default\" width=\"100%\" max_width=\"90%\" custom_padding=\"50px|50px|50px|50px|true|true\" custom_padding_tablet=\"80px|80px|80px|80px|true|true\" custom_padding_phone=\"30px|10px|30px|10px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_padding=\"||||false|false\" border_radii=\"on|20px|20px|20px|20px\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah Ward\" position=\"Bookkeeper\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|800|||||||\" header_text_align=\"left\" header_font_size=\"40px\" header_letter_spacing=\"-4px\" body_font=\"|300|||||||\" body_text_color=\"#000000\" body_font_size=\"15px\" position_font=\"|300|||||||\" position_text_align=\"left\" position_text_color=\"#000000\" position_font_size=\"15px\" background_color=\"#FFFFFF\" custom_margin=\"40px||||false|false\" custom_margin_tablet=\"0px||||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off||20px||\" box_shadow_style=\"preset1\" box_shadow_blur=\"140px\" global_colors_info=\"{}\"][/et_pb_team_member][et_pb_team_member _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" position_text_align=\"center\" position_text_color=\"#000000\" background_color=\"#FFFFFF\" custom_margin=\"0.5vw||||false|false\" custom_padding=\"30px|30px|30px|30px|true|true\" border_radii=\"off|||20px|\" box_shadow_style=\"preset1\" box_shadow_vertical=\"50px\" box_shadow_blur=\"140px\" box_shadow_spread=\"-10px\" global_colors_info=\"{}\"]<p>Sarah is our newest addition to the team.  We were fortunate to bring her on fresh out of her training with Okanagan College where she acquired her Accounting and Bookkeeping Certificate.  Sarah has a heart also for the nonprofit sector.  She has a diploma in Human Services from Columbia Bible College in Abbotsford and a Humanities Degree with a focus in History from Briercrest Bible College. </p>\n<p> Sarah has always had a love of numbers and math and it came naturally for her.  Her direction was to find a career in full cycle bookkeeping where she could put her new certificate to full practice.  We are so grateful she has joined our team and she is proving to be a valuable addition. </p>\n<p> Sarah has only been in the Okanagan for 2 years.  When she is not buried in bookkeeping projects you’ll find her on a hike with her husband and black lab, checking out a good coffee shop or setting up house in their brand new home.</p>[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" text_orientation=\"center\" global_colors_info=\"{}\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][brb_collection id=\"236\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','109-revision-v1','','','2022-02-05 16:01:04','2022-02-05 16:01:04','',109,'https://capitalbookkeepingco.com/?p=476',0,'revision','',0),(495,1,'2022-03-12 17:18:47','2022-03-12 17:18:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Find Us Online\" _builder_version=\"4.14.9\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table class=\"cpop_public_table\">\n<tbody>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>120businesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123companydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123localdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123locallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1bizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1localbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AAA Business Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Abizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>acebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aceusbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andyslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>angiebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>authenticcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>automatedlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileyslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellsbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistingsever.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesslistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocallistingnow.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestnearbycitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestonlinebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusiness.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigdaddybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>biggirlbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigredbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlisting123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bosslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationlocal.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesslistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>camelotlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Caseylocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>cheaplocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>checkyobizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationpowerhouse.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Citationsbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentiallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ezlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>First Business Listing</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>flashlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>headbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Hero Local Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>impressivelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jenslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>largestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Listingtopbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizlistingsAZ.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizmentions.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localblistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitationbits.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessciting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationboard.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localdirectoryusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingdaddy.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingnearme.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingteam.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingurus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locatecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mastermindcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>millionlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>namethatcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgenbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgencitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>organiclocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>qualitybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>quickbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>southernlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thefirstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thelocalbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thetopbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>theusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>todaysbestcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top20citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50localcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top75locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizpros.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topnotchbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusadirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>truelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>TZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USAtoplistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USbestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usbestbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>uslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>valuelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>vivahdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>wisecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>worldcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>yesbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Yeslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Find Us Online','','publish','closed','closed','','find-us-online','','','2022-03-13 15:47:02','2022-03-13 15:47:02','',0,'https://capitalbookkeepingco.com/?page_id=495',0,'page','',0),(496,1,'2022-03-12 17:09:02','2022-03-12 17:09:02','','Find Us Online','','inherit','closed','closed','','495-revision-v1','','','2022-03-12 17:09:02','2022-03-12 17:09:02','',495,'https://capitalbookkeepingco.com/?p=496',0,'revision','',0),(489,1,'2022-03-10 01:02:47','2022-03-10 01:02:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.7\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" global_colors_info=\"{}\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li>Account set up - SAGE/QuickBooks</li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#FFFFFF\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_bottom_1=\"0px\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px|true|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.7\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\"]<h2>No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based  business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.7\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||0px||false|false\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena \" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion_item open=\"on\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_css_main_element=\"display:none;\" global_colors_info=\"{}\"][/et_pb_accordion_item][et_pb_accordion_item title=\"Kelowna BC \" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<p>Ever searched for a place with pleasing scenery, beautiful weather in all four seasons, also having several amenities you can\'t run tired of? Search no more. Kelowna is just the place for you. From excellent health care to an exceptional educational system and fun recreational activities for the whole family to enjoy, Kelowna is sure to live up to all reasonable expectations.</p>\n<p>Kelowna is famous for its exquisite wineries, beautiful landscape of high mountains, orchards, pine forest, and vast vineyards. It is very well a paradise, located in southern Canada in the Okanagan Valley.</p>\n<ul>\n<li><strong> Its People</strong></li>\n</ul>\n<p>Over the last years, the increasing population in the city is a clear indication of how much wonder the city has to offer as more people come to love it. It\'s, in fact, one of the fastest-growing cities in Canada. Meeting new people is one of the best experiences you\'re sure to have in Kelowna. Coming across someone with similar interests and backgrounds as you is a given. Its people are hospitable and not afraid to help a stranger find their way around.</p>\n<ul>\n<li><strong>Its Weather</strong></li>\n</ul>\n<p>The weather is satisfactory for a city where the summer temperature stays around thirty degrees Celsius on average. In all four seasons, the sheer ambiance of the town remains marvelous. The winters are freezing but mild, the autumns are dry for some and inspirational for most as it\'s filled with vibrant colors, while the spring and summer months are pleasant and warm, which tourists from all spheres of the earth find most welcoming.</p>\n<ul>\n<li><strong>The Recreational Opportunities</strong></li>\n</ul>\n<p>Whether indoor or outdoor, Kelowna offers fun recreational activities that you\'re sure to love one or more. What sport do you fancy doing the most? Is it snowboarding and skiing? If yes, Kelowna has you covered. You\'re also welcomed to go mountain biking and hike at the Myra Canyon Trestles. Are you a fan of golf? You can always try out the world-class championship courses such as The Harvest Golf Club, The Kelowna Golf and Country Club, and Gallagher\'s Canyon. As you can imagine, there are many more activities for you to enjoy.</p>\n<ul>\n<li><strong>The Job Market</strong></li>\n</ul>\n<p>It\'s no surprise that Kelowna was ranked #1 in the competitive job market, having an unemployment rate as low as 7.4%. It\'s not only an exciting place to live but also a great place to work. The city\'s steady growth has presented employment opportunities in health care, manufacturing, technology, construction, and agriculture. Thanks to online sources and job boards like Workopolis, Kijiji, etc., the job market is easy to navigate. Also, big businesses like UBC-Okanagan, Kelowna International Airport, Okanagan College, and Interior Health have made Kelowna\'s economy strong, positively affecting the Job Market.</p>\n<ul>\n<li><strong>The Wine</strong></li>\n</ul>\n<p>Kelowna is most famous for its vineyards and wineries. The area produces the second-largest amount of wine in Canada. If you\'re a lover of wine, then you would most certainly be a lover of Kelowna. With vineyards of approximately 10,000 acres, it accounts for over 85% of all wine made in British Columbia. Hundreds of wineries can be located in the Okanagan region, which gives you the pleasure of attending unique tours and continually trying out the latest varieties.</p>\n<p>&nbsp;</p>\n<p><strong>Frequently Asked Questions</strong></p>\n<ol>\n<li><strong> What is Kelowna renowned for?</strong></li>\n</ol>\n<p>Kelowna is renowned for its internationally recognized and award-winning vineyards and wineries, and this gives a lot of pride to the local wine industry. It\'s hard to find a wine made outside of the Okanagan at a local gathering.</p>\n<ol start=\"2\">\n<li><strong> What recreational &amp; fun activities can one partake in Kelowna?</strong></li>\n</ol>\n<p>There are several recreational and fun activities that one can partake in Kelowna. The mountains are great for hiking and mountain biking. One can go ice-skating, and threat golfing facilities are there to enjoy. Skiing, snowboarding, and other exciting sports like football are also great to partake in and enjoy.</p>\n<ol start=\"3\">\n<li><strong> What\'s the buzz about Kelowna &amp; wine?</strong></li>\n</ol>\n<p>Well, that\'s not shocking with the vast vineyards and numerous wineries the city has to offer. Kelowna is internationally recognized as the second-largest producer of wine in Canada, with award-winning vineyards and wineries.</p>\n<ol start=\"4\">\n<li><strong> How easy is it to transit in and out of Kelowna?</strong></li>\n</ol>\n<p>Taking transit in Kelowna is easier than one may think. With several routes, buses, and impressive service hours yearly, transiting in and out of Kelowna is quite convenient. Over five million trips are carried out by transit locally each year.</p>\n<ol start=\"5\">\n<li><strong> How much sunshine does Kelowna enjoy annually &amp; what is the average daily weather like?</strong></li>\n</ol>\n<p>There is a fair amount of sunshine during summer, wintertime can be freezing, and it is crisp and somewhat cloudy all through the year. For the year, the average weather typically ranges between 23°F and 85°F. It also hardly goes below 7°F or anywhere above 94°F.</p>\n<ol start=\"6\">\n<li><strong> What are the medical facilities like in and around Kelowna?</strong></li>\n</ol>\n<p>In such a refined place as Kelowna, it\'s only natural for the medical facilities to be top-notch. There are many medical offices with the best practitioners and specialists In the medical field. The largest and most comprehensive medical facility in the area is the Kelowna General Hospital.</p>\n<ol start=\"7\">\n<li><strong> What are the employment opportunities in Kelowna like?</strong></li>\n</ol>\n<p> Employment opportunities are plentiful in Kelowna due to the steady growth of the city\'s economy.</p>\n<ol start=\"8\">\n<li><strong> How is the nightlife in Kelowna?</strong></li>\n</ol>\n<p>The nightlife in Kelowna is certain to make anyone who visits the city feel like a local. There are many entertainment options that you can enjoy, like live music, theatre, comedy, karaoke, and dance clubs. The night scene is a flourishing mix of friendly neighborhood pubs, ultra-hip discos, elegant lounges, sports bars, vigorous live theatre, and fun music venues.</p>\n<ol start=\"9\">\n<li><strong> What festivities are held in Kelowna?</strong></li>\n</ol>\n<p>Many hold through the year. From Kelowna pride week to Kelowna wine country half marathon, championship tournaments, live outdoor entertainment, and many others.</p>\n<ol start=\"10\">\n<li><strong> What communities &amp; cities are close to Kelowna?</strong></li>\n</ol>\n<p>Peachland, Summerland, Penticton, Vernon, Kaleden, Lumby, Armstrong, Enderby, Oliver, Princeton, Salmon Arm, Osoyoos, Merritt, Coldwater, and Chase. All in Canada.</p>\n<ol start=\"11\">\n<li><strong> How is the traffic situation like in Kelowna on regular days?</strong></li>\n</ol>\n<p>According to a survey carried out last year by the citizens, traffic is a bit of an issue. This inconvenience is due to the increasing population in the city. New measures are being carried out to ensure an easy traffic flow, which will easily accommodate everyone (new and old).</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-03-10 01:02:47','2022-03-10 01:02:47','',89,'https://capitalbookkeepingco.com/?p=489',0,'revision','',0),(486,1,'2022-02-16 00:55:34','2022-02-16 00:55:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping\" subhead=\"We Handle Your Finances, So You Can Run Your Business\" button_one_text=\"Contact Us\" button_one_url=\"/contact-us/\" _builder_version=\"4.14.5\" _module_preset=\"default\" title_font=\"|800|||||||\" title_font_size=\"55px\" title_line_height=\"1.5em\" subhead_font=\"|600|||||||\" subhead_font_size=\"22px\" subhead_line_height=\"1.7em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-bW.jpg\" custom_padding=\"150px||150px||true|false\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" width=\"600px\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"RGBA(255,255,255,0)\" border_width_top=\"2px\" locked=\"off\" global_colors_info=\"{}\"]<h2>Professional Bookkeeping Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" border_radii=\"on|6px|6px|6px|6px\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/bookkeeper.jpg\" title_text=\"bookkeeper\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.7\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Corporate, Proprietorships &amp; Non Profits</h3>\n<ul>\n<li>Account set up - SAGE/QuickBooks</li>\n<li>Accounts Receivable</li>\n<li>Accounts Payable</li>\n<li>Bank and credit card reconciliations</li>\n<li>Monthly &amp; yearly financial statement preparations</li>\n<li>Sales tax reconciliation and remittance</li>\n<li>Job Costing</li>\n<li>Budgeting</li>\n<li>Grant application assistance</li>\n<li>Financial report analysis</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/Accountant-Image-35.jpg\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.3\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.2\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Payroll</h3>\n<ul>\n<li>Payroll preparation</li>\n<li>CRA Receiver General tax payments</li>\n<li>Group health benefits administration</li>\n<li>Workers compensation preparation &amp; submission</li>\n<li>T4, T4A, T5018 Tax Slip Preparation</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/calculate.jpg\" title_text=\"calculate\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"4.14.4\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.3\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"||||||||\" header_3_font=\"Open Sans|600|||||||\" header_3_line_height=\"1.6em\" locked=\"off\" global_colors_info=\"{}\"]<h3>Industry Experience</h3>\n<ul>\n<li>Non profit </li>\n<li>Construction</li>\n<li>Retail</li>\n<li>Medical (Chiropractic)</li>\n<li>Agricultural</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#FFFFFF\" padding_top_bottom_link_1=\"false\" padding_left_right_link_1=\"false\" padding_top_1=\"1%\" padding_bottom_1=\"0px\" padding_left_1=\"1%\" padding_left_2=\"30px\" padding_2_tablet=\"|||0px\" padding_2_phone=\"\" padding_2_last_edited=\"on|tablet\" admin_label=\"About\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.14.7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px|true|false\" make_fullwidth=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Capital-Bookkeeping-Company-logo.png\" title_text=\"Capital Bookkeeping Company\" align=\"center\" _builder_version=\"4.14.5\" _module_preset=\"default\" custom_margin=\"0px||0px||true|false\" custom_padding=\"0px||0px||true|false\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.14.7\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"||||||||\" max_width_tablet=\"700px\" max_width_phone=\"700px\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"|0px||\" custom_margin_phone=\"|0px||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"20px|||5%|false|false\" hover_enabled=\"0\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_color_all=\"#12eaa6\" locked=\"off\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>No Client is Too Big or Small</h2>\n<p>Capital Bookkeeping Company is a Kelowna-based  business established in 2017, with over 40 combined years of experience servicing business of all sizes and industry types. We customize our services to suit your needs – whether your business requires weekly, semi-monthly, monthly, quarterly or an annual service. Our goal is to ensure your needs are met!</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" padding_tablet=\"|||0px\" padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" padding_phone=\"|||0px\"][et_pb_row_inner use_custom_gutter=\"on\" _builder_version=\"4.14.7\" background_color=\"rgba(0,0,0,0.44)\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/accountant-01.jpg\" background_blend=\"multiply\" custom_margin=\"||0px||false|false\" custom_padding=\"80px|10%|80px|10%|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.14.5\" text_font=\"||||||||\" text_font_size=\"16px\" text_line_height=\"2em\" header_font=\"||||||||\" header_2_font=\"Montserrat|800|||||||\" header_2_font_size=\"30px\" header_2_line_height=\"1.5em\" header_3_font=\"||||||||\" header_4_font=\"Montserrat|700||on|||||\" header_4_text_color=\"rgba(255,255,255,0.4)\" header_4_font_size=\"15px\" header_4_letter_spacing=\"2px\" header_4_line_height=\"1.6em\" background_layout=\"dark\" custom_margin_tablet=\"20px||0px|0px\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" border_radii=\"on|6px|6px|6px|6px\" locked=\"off\" global_colors_info=\"{}\"]<h4></h4>\n<h2>Paperwork weighing you down?</h2>\n<p>Your financial papers can pile up quickly. Sorting them out can be a frustrating hassle. We can help it all make sense. Let us turn your stacks of paper into valuable usable financial information that helps move you forward toward your goals.</p>[/et_pb_text][et_pb_button button_text=\"Our Services\" _builder_version=\"4.14.2\" custom_button=\"on\" button_text_size=\"15px\" button_bg_color=\"#0C71C3\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"2px\" button_font=\"Open Sans|700||on|||||\" button_use_icon=\"off\" background_layout=\"dark\" custom_margin=\"||||true\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"#00e2c4\" locked=\"off\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#00e2c4\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" background_color=\"#FFFFFF\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\"]<h3>Our Team</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Trena \" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Trena3891-Editcrop.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Julie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Cathe.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Cathie\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Julie.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_team_member name=\"Sarah\" image_url=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/Sara.jpg\" _builder_version=\"4.14.7\" _module_preset=\"default\" header_font=\"|700|||||||\" header_text_align=\"center\" global_colors_info=\"{}\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_accordion_item open=\"on\" _builder_version=\"4.14.7\" _module_preset=\"default\" custom_css_main_element=\"display:none;\" global_colors_info=\"{}\"][/et_pb_accordion_item][et_pb_accordion_item title=\"Kelowna BC \" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\" open=\"off\"]<p>Ever searched for a place with pleasing scenery, beautiful weather in all four seasons, also having several amenities you can\'t run tired of? Search no more. Kelowna is just the place for you. From excellent health care to an exceptional educational system and fun recreational activities for the whole family to enjoy, Kelowna is sure to live up to all reasonable expectations.</p>\n<p>Kelowna is famous for its exquisite wineries, beautiful landscape of high mountains, orchards, pine forest, and vast vineyards. It is very well a paradise, located in southern Canada in the Okanagan Valley.</p>\n<ul>\n<li><strong> Its People</strong></li>\n</ul>\n<p>Over the last years, the increasing population in the city is a clear indication of how much wonder the city has to offer as more people come to love it. It\'s, in fact, one of the fastest-growing cities in Canada. Meeting new people is one of the best experiences you\'re sure to have in Kelowna. Coming across someone with similar interests and backgrounds as you is a given. Its people are hospitable and not afraid to help a stranger find their way around.</p>\n<ul>\n<li><strong>Its Weather</strong></li>\n</ul>\n<p>The weather is satisfactory for a city where the summer temperature stays around thirty degrees Celsius on average. In all four seasons, the sheer ambiance of the town remains marvelous. The winters are freezing but mild, the autumns are dry for some and inspirational for most as it\'s filled with vibrant colors, while the spring and summer months are pleasant and warm, which tourists from all spheres of the earth find most welcoming.</p>\n<ul>\n<li><strong>The Recreational Opportunities</strong></li>\n</ul>\n<p>Whether indoor or outdoor, Kelowna offers fun recreational activities that you\'re sure to love one or more. What sport do you fancy doing the most? Is it snowboarding and skiing? If yes, Kelowna has you covered. You\'re also welcomed to go mountain biking and hike at the Myra Canyon Trestles. Are you a fan of golf? You can always try out the world-class championship courses such as The Harvest Golf Club, The Kelowna Golf and Country Club, and Gallagher\'s Canyon. As you can imagine, there are many more activities for you to enjoy.</p>\n<ul>\n<li><strong>The Job Market</strong></li>\n</ul>\n<p>It\'s no surprise that Kelowna was ranked #1 in the competitive job market, having an unemployment rate as low as 7.4%. It\'s not only an exciting place to live but also a great place to work. The city\'s steady growth has presented employment opportunities in health care, manufacturing, technology, construction, and agriculture. Thanks to online sources and job boards like Workopolis, Kijiji, etc., the job market is easy to navigate. Also, big businesses like UBC-Okanagan, Kelowna International Airport, Okanagan College, and Interior Health have made Kelowna\'s economy strong, positively affecting the Job Market.</p>\n<ul>\n<li><strong>The Wine</strong></li>\n</ul>\n<p>Kelowna is most famous for its vineyards and wineries. The area produces the second-largest amount of wine in Canada. If you\'re a lover of wine, then you would most certainly be a lover of Kelowna. With vineyards of approximately 10,000 acres, it accounts for over 85% of all wine made in British Columbia. Hundreds of wineries can be located in the Okanagan region, which gives you the pleasure of attending unique tours and continually trying out the latest varieties.</p>\n<p>&nbsp;</p>\n<p><strong>Frequently Asked Questions</strong></p>\n<ol>\n<li><strong> What is Kelowna renowned for?</strong></li>\n</ol>\n<p>Kelowna is renowned for its internationally recognized and award-winning vineyards and wineries, and this gives a lot of pride to the local wine industry. It\'s hard to find a wine made outside of the Okanagan at a local gathering.</p>\n<ol start=\"2\">\n<li><strong> What recreational &amp; fun activities can one partake in Kelowna?</strong></li>\n</ol>\n<p>There are several recreational and fun activities that one can partake in Kelowna. The mountains are great for hiking and mountain biking. One can go ice-skating, and threat golfing facilities are there to enjoy. Skiing, snowboarding, and other exciting sports like football are also great to partake in and enjoy.</p>\n<ol start=\"3\">\n<li><strong> What\'s the buzz about Kelowna &amp; wine?</strong></li>\n</ol>\n<p>Well, that\'s not shocking with the vast vineyards and numerous wineries the city has to offer. Kelowna is internationally recognized as the second-largest producer of wine in Canada, with award-winning vineyards and wineries.</p>\n<ol start=\"4\">\n<li><strong> How easy is it to transit in and out of Kelowna?</strong></li>\n</ol>\n<p>Taking transit in Kelowna is easier than one may think. With several routes, buses, and impressive service hours yearly, transiting in and out of Kelowna is quite convenient. Over five million trips are carried out by transit locally each year.</p>\n<ol start=\"5\">\n<li><strong> How much sunshine does Kelowna enjoy annually &amp; what is the average daily weather like?</strong></li>\n</ol>\n<p>There is a fair amount of sunshine during summer, wintertime can be freezing, and it is crisp and somewhat cloudy all through the year. For the year, the average weather typically ranges between 23°F and 85°F. It also hardly goes below 7°F or anywhere above 94°F.</p>\n<ol start=\"6\">\n<li><strong> What are the medical facilities like in and around Kelowna?</strong></li>\n</ol>\n<p>In such a refined place as Kelowna, it\'s only natural for the medical facilities to be top-notch. There are many medical offices with the best practitioners and specialists In the medical field. The largest and most comprehensive medical facility in the area is the Kelowna General Hospital.</p>\n<ol start=\"7\">\n<li><strong> What are the employment opportunities in Kelowna like?</strong></li>\n</ol>\n<p> Employment opportunities are plentiful in Kelowna due to the steady growth of the city\'s economy.</p>\n<ol start=\"8\">\n<li><strong> How is the nightlife in Kelowna?</strong></li>\n</ol>\n<p>The nightlife in Kelowna is certain to make anyone who visits the city feel like a local. There are many entertainment options that you can enjoy, like live music, theatre, comedy, karaoke, and dance clubs. The night scene is a flourishing mix of friendly neighborhood pubs, ultra-hip discos, elegant lounges, sports bars, vigorous live theatre, and fun music venues.</p>\n<ol start=\"9\">\n<li><strong> What festivities are held in Kelowna?</strong></li>\n</ol>\n<p>Many hold through the year. From Kelowna pride week to Kelowna wine country half marathon, championship tournaments, live outdoor entertainment, and many others.</p>\n<ol start=\"10\">\n<li><strong> What communities &amp; cities are close to Kelowna?</strong></li>\n</ol>\n<p>Peachland, Summerland, Penticton, Vernon, Kaleden, Lumby, Armstrong, Enderby, Oliver, Princeton, Salmon Arm, Osoyoos, Merritt, Coldwater, and Chase. All in Canada.</p>\n<ol start=\"11\">\n<li><strong> How is the traffic situation like in Kelowna on regular days?</strong></li>\n</ol>\n<p>According to a survey carried out last year by the citizens, traffic is a bit of an issue. This inconvenience is due to the increasing population in the city. New measures are being carried out to ensure an easy traffic flow, which will easily accommodate everyone (new and old).</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','89-revision-v1','','','2022-02-16 00:55:34','2022-02-16 00:55:34','',89,'https://capitalbookkeepingco.com/?p=486',0,'revision','',0),(498,1,'2022-03-12 17:11:38','2022-03-12 17:11:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header title=\"Capital Bookkeeping Co\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#dbdbdb\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"60%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/concentrated-businesswoman-with-highlighter-scaled.jpg\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 class=\"et_pb_module_header\">Who We Are</h2>\n<div>\n<p>Our Mission is to provide our clients with superior accounting and related services that satisfies their needs and improves their quality of life; and to provide employees and owners with meaningful careers that include flexibility and opportunities for success – all while being a good corporate citizen.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" background_color=\"#dbdbdb\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#dbdbdb\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"40%\" background_color_gradient_end_position=\"70%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/forex-trade-graph-chart-concept-scaled.jpg\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 class=\"et_pb_module_header\">At Your Service</h2>\n<div>\n<p>RHN is a full-service accounting firm that can meet all your diverse and unique accounting needs. Our highly trained professionals will give you the quality service and expertise that you deserve.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"#dbdbdb\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"15%\" background_color_gradient_end_position=\"35%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/stock-exchange-trading-forex-finance-graphic-concept-scaled.jpg\" background_size=\"contain\" background_position=\"center_left\" custom_padding=\"100px||100px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2 class=\"et_pb_module_header\">Culture</h2>\n<div>\n<p>RHN is a progressive, fast-paced, family-like organization where we work hard and have fun. We know the importance of a healthy work and life balance. Always looking at ways to better serve our clients and support our staff, our firm stays on the leading edge, embraces open communication and encourages continued personal growth and development.</p>\n</div>[/et_pb_text][et_pb_button button_text=\"Click Here\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.2\" _module_preset=\"default\" header_3_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h3>Testimonials</h3>[/et_pb_text][et_pb_testimonial author=\"Name Goes Here\" portrait_url=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Find Us Online','','inherit','closed','closed','','495-revision-v1','','','2022-03-12 17:11:38','2022-03-12 17:11:38','',495,'https://capitalbookkeepingco.com/?p=498',0,'revision','',0),(506,1,'2022-03-13 15:21:16','2022-03-13 15:21:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Find Us Online\" _builder_version=\"4.14.9\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\nhttps://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Find Us Online','','inherit','closed','closed','','495-revision-v1','','','2022-03-13 15:21:16','2022-03-13 15:21:16','',495,'https://capitalbookkeepingco.com/?p=506',0,'revision','',0),(548,0,'2022-03-13 15:26:55','2022-03-13 15:26:55','<blockquote class=\"wp-embedded-content\" data-secret=\"YhpZHhROBz\"><a href=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; American Local Listing\" src=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=MUSQJzHzEV#?secret=YhpZHhROBz\" data-secret=\"YhpZHhROBz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b44c6303214d570bbc08eac9e28a792e','','','2022-03-13 15:26:55','2022-03-13 15:26:55','',0,'https://capitalbookkeepingco.com/b44c6303214d570bbc08eac9e28a792e/',0,'oembed_cache','',0),(549,0,'2022-03-13 15:26:55','2022-03-13 15:26:55','<blockquote class=\"wp-embedded-content\" data-secret=\"dqspLCnzNl\"><a href=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Andy&#039;s Biz Listing\" src=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=zdwcXt9upY#?secret=dqspLCnzNl\" data-secret=\"dqspLCnzNl\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','f1197fdeceea6435df8f09d15c67f3ee','','','2022-03-13 15:26:55','2022-03-13 15:26:55','',0,'https://capitalbookkeepingco.com/f1197fdeceea6435df8f09d15c67f3ee/',0,'oembed_cache','',0),(550,0,'2022-03-13 15:26:55','2022-03-13 15:26:55','<blockquote class=\"wp-embedded-content\" data-secret=\"6yZVindZzd\"><a href=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Andy&#039;s Biz Listings\" src=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=sCMvJNqt92#?secret=6yZVindZzd\" data-secret=\"6yZVindZzd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','12a302c1f6708566e4fa7cc63150b765','','','2022-03-13 15:26:55','2022-03-13 15:26:55','',0,'https://capitalbookkeepingco.com/12a302c1f6708566e4fa7cc63150b765/',0,'oembed_cache','',0),(551,0,'2022-03-13 15:26:55','2022-03-13 15:26:55','<blockquote class=\"wp-embedded-content\" data-secret=\"obmQND9Mdv\"><a href=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Andy&#039;s Local Listing\" src=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hc0PwLwXFw#?secret=obmQND9Mdv\" data-secret=\"obmQND9Mdv\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','e141446baa236441fc79c17d80bd435f','','','2022-03-13 15:26:55','2022-03-13 15:26:55','',0,'https://capitalbookkeepingco.com/e141446baa236441fc79c17d80bd435f/',0,'oembed_cache','',0),(552,0,'2022-03-13 15:26:57','2022-03-13 15:26:57','<blockquote class=\"wp-embedded-content\" data-secret=\"0KvhMfDxO5\"><a href=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Angie Biz List\" src=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=vEZdPbafww#?secret=0KvhMfDxO5\" data-secret=\"0KvhMfDxO5\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','96933ad51e4c950efc3c67d2417ad03b','','','2022-03-13 15:26:57','2022-03-13 15:26:57','',0,'https://capitalbookkeepingco.com/96933ad51e4c950efc3c67d2417ad03b/',0,'oembed_cache','',0),(553,0,'2022-03-13 15:26:57','2022-03-13 15:26:57','<blockquote class=\"wp-embedded-content\" data-secret=\"SfEzI1wsDB\"><a href=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Authentic Citations\" src=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=NBuEoZGHDS#?secret=SfEzI1wsDB\" data-secret=\"SfEzI1wsDB\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','dbc6cfa102eda986fafb1274acc65846','','','2022-03-13 15:26:57','2022-03-13 15:26:57','',0,'https://capitalbookkeepingco.com/dbc6cfa102eda986fafb1274acc65846/',0,'oembed_cache','',0),(554,0,'2022-03-13 15:26:58','2022-03-13 15:26:58','<blockquote class=\"wp-embedded-content\" data-secret=\"CCeMmhD4jR\"><a href=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Automated Local Listings\" src=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=TJRAOISezg#?secret=CCeMmhD4jR\" data-secret=\"CCeMmhD4jR\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b96aed521c529dccde5f7d7018d78cb9','','','2022-03-13 15:26:58','2022-03-13 15:26:58','',0,'https://capitalbookkeepingco.com/b96aed521c529dccde5f7d7018d78cb9/',0,'oembed_cache','',0),(555,0,'2022-03-13 15:26:58','2022-03-13 15:26:58','<blockquote class=\"wp-embedded-content\" data-secret=\"eqIl0HiPHe\"><a href=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Biz Directory\" src=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Lwb6FbkKJD#?secret=eqIl0HiPHe\" data-secret=\"eqIl0HiPHe\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','25656b52283a08084829a78733c6fc00','','','2022-03-13 15:26:58','2022-03-13 15:26:58','',0,'https://capitalbookkeepingco.com/25656b52283a08084829a78733c6fc00/',0,'oembed_cache','',0),(556,0,'2022-03-13 15:26:58','2022-03-13 15:26:58','<blockquote class=\"wp-embedded-content\" data-secret=\"u3oPVBgPyf\"><a href=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZBiz Listing\" src=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=tNSJhYDPtN#?secret=u3oPVBgPyf\" data-secret=\"u3oPVBgPyf\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','0e72fbcb06314659d6cf840cd84aae36','','','2022-03-13 15:26:58','2022-03-13 15:26:58','',0,'https://capitalbookkeepingco.com/0e72fbcb06314659d6cf840cd84aae36/',0,'oembed_cache','',0),(557,0,'2022-03-13 15:26:58','2022-03-13 15:26:58','<blockquote class=\"wp-embedded-content\" data-secret=\"NJAIY5hYBT\"><a href=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Biz Listings\" src=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=uEHrEllKlU#?secret=NJAIY5hYBT\" data-secret=\"NJAIY5hYBT\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','acdb7e26d8b784560947e2e3be316563','','','2022-03-13 15:26:58','2022-03-13 15:26:58','',0,'https://capitalbookkeepingco.com/acdb7e26d8b784560947e2e3be316563/',0,'oembed_cache','',0),(558,0,'2022-03-13 15:26:59','2022-03-13 15:26:59','<blockquote class=\"wp-embedded-content\" data-secret=\"ZTh67ny8bU\"><a href=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Business List\" src=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=VsGRM5j8Yv#?secret=ZTh67ny8bU\" data-secret=\"ZTh67ny8bU\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','387266d91399c92c9afaab1004b86afc','','','2022-03-13 15:26:59','2022-03-13 15:26:59','',0,'https://capitalbookkeepingco.com/387266d91399c92c9afaab1004b86afc/',0,'oembed_cache','',0),(559,0,'2022-03-13 15:26:59','2022-03-13 15:26:59','<blockquote class=\"wp-embedded-content\" data-secret=\"afGbgYMNjY\"><a href=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Business Lists\" src=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=65amA7FNNl#?secret=afGbgYMNjY\" data-secret=\"afGbgYMNjY\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','c86b1a10b2164524a9c65a59de1c8d2d','','','2022-03-13 15:26:59','2022-03-13 15:26:59','',0,'https://capitalbookkeepingco.com/c86b1a10b2164524a9c65a59de1c8d2d/',0,'oembed_cache','',0),(560,0,'2022-03-13 15:26:59','2022-03-13 15:26:59','<blockquote class=\"wp-embedded-content\" data-secret=\"9JZrA437TA\"><a href=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Local Biz Listings\" src=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ybShZEAgm5#?secret=9JZrA437TA\" data-secret=\"9JZrA437TA\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','3cedca2d199f769c6d8cdda671794032','','','2022-03-13 15:26:59','2022-03-13 15:26:59','',0,'https://capitalbookkeepingco.com/3cedca2d199f769c6d8cdda671794032/',0,'oembed_cache','',0),(561,0,'2022-03-13 15:26:59','2022-03-13 15:26:59','<blockquote class=\"wp-embedded-content\" data-secret=\"nq5T1bI1cw\"><a href=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Local Directory\" src=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hVlPBNFG8U#?secret=nq5T1bI1cw\" data-secret=\"nq5T1bI1cw\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','1e3a889e849ea0a475532dc668e9b8b7','','','2022-03-13 15:26:59','2022-03-13 15:26:59','',0,'https://capitalbookkeepingco.com/1e3a889e849ea0a475532dc668e9b8b7/',0,'oembed_cache','',0),(562,0,'2022-03-13 15:27:00','2022-03-13 15:27:00','<blockquote class=\"wp-embedded-content\" data-secret=\"VFQF1gQG2i\"><a href=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Local Listing\" src=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hIyUBKisNb#?secret=VFQF1gQG2i\" data-secret=\"VFQF1gQG2i\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a28ae40fd7bb68e918d684c253981c38','','','2022-03-13 15:27:00','2022-03-13 15:27:00','',0,'https://capitalbookkeepingco.com/a28ae40fd7bb68e918d684c253981c38/',0,'oembed_cache','',0),(563,0,'2022-03-13 15:27:00','2022-03-13 15:27:00','<blockquote class=\"wp-embedded-content\" data-secret=\"F6096iC7l1\"><a href=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Local Listings\" src=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=TFikrS3SSI#?secret=F6096iC7l1\" data-secret=\"F6096iC7l1\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','08f942bad3967232f9ef50853e3179ec','','','2022-03-13 15:27:00','2022-03-13 15:27:00','',0,'https://capitalbookkeepingco.com/08f942bad3967232f9ef50853e3179ec/',0,'oembed_cache','',0),(564,0,'2022-03-13 15:27:00','2022-03-13 15:27:00','<blockquote class=\"wp-embedded-content\" data-secret=\"GkN71HwP8e\"><a href=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; AZ Local Lists\" src=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=vF9leptZLJ#?secret=GkN71HwP8e\" data-secret=\"GkN71HwP8e\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','469f896d950db177d9a496d3fd8b5b80','','','2022-03-13 15:27:00','2022-03-13 15:27:00','',0,'https://capitalbookkeepingco.com/469f896d950db177d9a496d3fd8b5b80/',0,'oembed_cache','',0),(565,0,'2022-03-13 15:27:01','2022-03-13 15:27:01','<blockquote class=\"wp-embedded-content\" data-secret=\"DDEWkSPlI8\"><a href=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bailey Biz Directory\" src=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=NRLOvZYoMi#?secret=DDEWkSPlI8\" data-secret=\"DDEWkSPlI8\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','65c82a6b645c987ed0b50eb50ffda069','','','2022-03-13 15:27:01','2022-03-13 15:27:01','',0,'https://capitalbookkeepingco.com/65c82a6b645c987ed0b50eb50ffda069/',0,'oembed_cache','',0),(566,0,'2022-03-13 15:27:01','2022-03-13 15:27:01','<blockquote class=\"wp-embedded-content\" data-secret=\"ahfznLBYhU\"><a href=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bailey Biz Listings\" src=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=TBRgdAv9ar#?secret=ahfznLBYhU\" data-secret=\"ahfznLBYhU\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b8821742dfdf60cd4714a4c5432418b0','','','2022-03-13 15:27:01','2022-03-13 15:27:01','',0,'https://capitalbookkeepingco.com/b8821742dfdf60cd4714a4c5432418b0/',0,'oembed_cache','',0),(567,0,'2022-03-13 15:27:02','2022-03-13 15:27:02','<blockquote class=\"wp-embedded-content\" data-secret=\"oRhFl2FvHc\"><a href=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bailey Local Listings\" src=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ED6HyBnM7Y#?secret=oRhFl2FvHc\" data-secret=\"oRhFl2FvHc\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','589e8cd73ad44166052040f89b2008db','','','2022-03-13 15:27:02','2022-03-13 15:27:02','',0,'https://capitalbookkeepingco.com/589e8cd73ad44166052040f89b2008db/',0,'oembed_cache','',0),(568,0,'2022-03-13 15:27:02','2022-03-13 15:27:02','<blockquote class=\"wp-embedded-content\" data-secret=\"Ple3dJrRP1\"><a href=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bailey&#039;s Biz Listings\" src=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=VAL97aAFa5#?secret=Ple3dJrRP1\" data-secret=\"Ple3dJrRP1\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','9d068355c2b7201401066ac3da327c04','','','2022-03-13 15:27:02','2022-03-13 15:27:02','',0,'https://capitalbookkeepingco.com/9d068355c2b7201401066ac3da327c04/',0,'oembed_cache','',0),(569,0,'2022-03-13 15:27:02','2022-03-13 15:27:02','<blockquote class=\"wp-embedded-content\" data-secret=\"dY2EMVX2D4\"><a href=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Baileys Local Directory\" src=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=1GaiJZjB5L#?secret=dY2EMVX2D4\" data-secret=\"dY2EMVX2D4\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','7f019d91671daefc234201038852acce','','','2022-03-13 15:27:02','2022-03-13 15:27:02','',0,'https://capitalbookkeepingco.com/7f019d91671daefc234201038852acce/',0,'oembed_cache','',0),(570,0,'2022-03-13 15:27:04','2022-03-13 15:27:04','<blockquote class=\"wp-embedded-content\" data-secret=\"67KdtJM3wM\"><a href=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bell Biz Listing\" src=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ZOWPdFxzfB#?secret=67KdtJM3wM\" data-secret=\"67KdtJM3wM\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','40c232e31d2e9f9e3b291e86cfdee9cd','','','2022-03-13 15:27:04','2022-03-13 15:27:04','',0,'https://capitalbookkeepingco.com/40c232e31d2e9f9e3b291e86cfdee9cd/',0,'oembed_cache','',0),(571,0,'2022-03-13 15:27:04','2022-03-13 15:27:04','<blockquote class=\"wp-embedded-content\" data-secret=\"de2qZtFW8t\"><a href=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bell Biz Directory\" src=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hYcgulMkWC#?secret=de2qZtFW8t\" data-secret=\"de2qZtFW8t\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','5bfc1d2e60192227d291833414cca4a7','','','2022-03-13 15:27:04','2022-03-13 15:27:04','',0,'https://capitalbookkeepingco.com/5bfc1d2e60192227d291833414cca4a7/',0,'oembed_cache','',0),(572,0,'2022-03-13 15:27:05','2022-03-13 15:27:05','<blockquote class=\"wp-embedded-content\" data-secret=\"ko5Fdb0iCb\"><a href=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bells Local Directory\" src=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4VMLi3R3ih#?secret=ko5Fdb0iCb\" data-secret=\"ko5Fdb0iCb\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','055c9bd410944442e7736d673d67d794','','','2022-03-13 15:27:05','2022-03-13 15:27:05','',0,'https://capitalbookkeepingco.com/055c9bd410944442e7736d673d67d794/',0,'oembed_cache','',0),(573,0,'2022-03-13 15:27:05','2022-03-13 15:27:05','<blockquote class=\"wp-embedded-content\" data-secret=\"UszOesgnxd\"><a href=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bells Local Listings\" src=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=p9G4Zk45OB#?secret=UszOesgnxd\" data-secret=\"UszOesgnxd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','3086ae4ad22964343d8c79b005ef710d','','','2022-03-13 15:27:05','2022-03-13 15:27:05','',0,'https://capitalbookkeepingco.com/3086ae4ad22964343d8c79b005ef710d/',0,'oembed_cache','',0),(574,0,'2022-03-13 15:27:05','2022-03-13 15:27:05','<blockquote class=\"wp-embedded-content\" data-secret=\"z4kt8rW1C6\"><a href=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Bells Local Lists\" src=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=QlQ9hzQt9F#?secret=z4kt8rW1C6\" data-secret=\"z4kt8rW1C6\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a121228e76840b2e8bfc665243242198','','','2022-03-13 15:27:05','2022-03-13 15:27:05','',0,'https://capitalbookkeepingco.com/a121228e76840b2e8bfc665243242198/',0,'oembed_cache','',0),(575,0,'2022-03-13 15:27:06','2022-03-13 15:27:06','<blockquote class=\"wp-embedded-content\" data-secret=\"sxig7WpoaD\"><a href=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Citation\" src=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=NlsbIuRhID#?secret=sxig7WpoaD\" data-secret=\"sxig7WpoaD\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','15e48c968c432e455ffb40adc0ef2299','','','2022-03-13 15:27:06','2022-03-13 15:27:06','',0,'https://capitalbookkeepingco.com/15e48c968c432e455ffb40adc0ef2299/',0,'oembed_cache','',0),(576,0,'2022-03-13 15:27:06','2022-03-13 15:27:06','<blockquote class=\"wp-embedded-content\" data-secret=\"gHmQ9SKqWF\"><a href=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Citations\" src=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=aPhhAMzd7y#?secret=gHmQ9SKqWF\" data-secret=\"gHmQ9SKqWF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','8fc83771b39a069cbcbc2e71ee6b81f3','','','2022-03-13 15:27:06','2022-03-13 15:27:06','',0,'https://capitalbookkeepingco.com/8fc83771b39a069cbcbc2e71ee6b81f3/',0,'oembed_cache','',0),(577,0,'2022-03-13 15:27:06','2022-03-13 15:27:06','<blockquote class=\"wp-embedded-content\" data-secret=\"XHjM4vxZkz\"><a href=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Listing\" src=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=iU8V5VuHeP#?secret=XHjM4vxZkz\" data-secret=\"XHjM4vxZkz\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','d86982021fa1687f3f0dbd315d3e2823','','','2022-03-13 15:27:06','2022-03-13 15:27:06','',0,'https://capitalbookkeepingco.com/d86982021fa1687f3f0dbd315d3e2823/',0,'oembed_cache','',0),(578,0,'2022-03-13 15:27:07','2022-03-13 15:27:07','<blockquote class=\"wp-embedded-content\" data-secret=\"TYRKF6A5Y0\"><a href=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Listings\" src=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=gTORiKahUE#?secret=TYRKF6A5Y0\" data-secret=\"TYRKF6A5Y0\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','ae42958781ad297145225985a61c13aa','','','2022-03-13 15:27:07','2022-03-13 15:27:07','',0,'https://capitalbookkeepingco.com/ae42958781ad297145225985a61c13aa/',0,'oembed_cache','',0),(579,0,'2022-03-13 15:27:09','2022-03-13 15:27:09','<blockquote class=\"wp-embedded-content\" data-secret=\"pY1fjcVnn6\"><a href=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Biz Listings Ever\" src=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=Ga0yR7cP3I#?secret=pY1fjcVnn6\" data-secret=\"pY1fjcVnn6\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','fcd919207122f5e29c9b14ab01a67408','','','2022-03-13 15:27:09','2022-03-13 15:27:09','',0,'https://capitalbookkeepingco.com/fcd919207122f5e29c9b14ab01a67408/',0,'oembed_cache','',0),(580,0,'2022-03-13 15:27:09','2022-03-13 15:27:09','<blockquote class=\"wp-embedded-content\" data-secret=\"pS5gJxzcSg\"><a href=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Business Citation\" src=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=U8doIfghkF#?secret=pS5gJxzcSg\" data-secret=\"pS5gJxzcSg\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','c49c2c100013b248702757141cfc1090','','','2022-03-13 15:27:09','2022-03-13 15:27:09','',0,'https://capitalbookkeepingco.com/c49c2c100013b248702757141cfc1090/',0,'oembed_cache','',0),(581,0,'2022-03-13 15:27:09','2022-03-13 15:27:09','<blockquote class=\"wp-embedded-content\" data-secret=\"VGvSkmY0Uf\"><a href=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Business Citations\" src=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=5951czsmwr#?secret=VGvSkmY0Uf\" data-secret=\"VGvSkmY0Uf\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','8326148764796786d92b1223e5673ba9','','','2022-03-13 15:27:09','2022-03-13 15:27:09','',0,'https://capitalbookkeepingco.com/8326148764796786d92b1223e5673ba9/',0,'oembed_cache','',0),(582,0,'2022-03-13 15:27:10','2022-03-13 15:27:10','<blockquote class=\"wp-embedded-content\" data-secret=\"XhEZ02SPdL\"><a href=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Business Listing USA\" src=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=AGR1BH7mgT#?secret=XhEZ02SPdL\" data-secret=\"XhEZ02SPdL\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','66378c6022a6e9a64f7ab44412788f79','','','2022-03-13 15:27:10','2022-03-13 15:27:10','',0,'https://capitalbookkeepingco.com/66378c6022a6e9a64f7ab44412788f79/',0,'oembed_cache','',0),(583,0,'2022-03-13 15:27:10','2022-03-13 15:27:10','<blockquote class=\"wp-embedded-content\" data-secret=\"tkMjN8p3Pn\"><a href=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Company Directories\" src=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=GYK7IUkMeq#?secret=tkMjN8p3Pn\" data-secret=\"tkMjN8p3Pn\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','880e9e22ea236d2b1630594fb561be42','','','2022-03-13 15:27:10','2022-03-13 15:27:10','',0,'https://capitalbookkeepingco.com/880e9e22ea236d2b1630594fb561be42/',0,'oembed_cache','',0),(584,0,'2022-03-13 15:27:11','2022-03-13 15:27:11','<blockquote class=\"wp-embedded-content\" data-secret=\"PenYHUszDs\"><a href=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Company Directory\" src=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=6RlzwCIkXb#?secret=PenYHUszDs\" data-secret=\"PenYHUszDs\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','9dee2a69737dbbdd55c490648aefbd8f','','','2022-03-13 15:27:11','2022-03-13 15:27:11','',0,'https://capitalbookkeepingco.com/9dee2a69737dbbdd55c490648aefbd8f/',0,'oembed_cache','',0),(585,0,'2022-03-13 15:27:11','2022-03-13 15:27:11','<blockquote class=\"wp-embedded-content\" data-secret=\"1ZPlm6P3TA\"><a href=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Local Biz Citation\" src=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=D15gcYtYly#?secret=1ZPlm6P3TA\" data-secret=\"1ZPlm6P3TA\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','c519c5f3ef6d4b5b44f0d81273312eae','','','2022-03-13 15:27:11','2022-03-13 15:27:11','',0,'https://capitalbookkeepingco.com/c519c5f3ef6d4b5b44f0d81273312eae/',0,'oembed_cache','',0),(586,0,'2022-03-13 15:27:12','2022-03-13 15:27:12','<blockquote class=\"wp-embedded-content\" data-secret=\"Gg51z16zFC\"><a href=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Local Biz Listing\" src=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=hsnIrOk1it#?secret=Gg51z16zFC\" data-secret=\"Gg51z16zFC\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','3a80f8dda5be3e117dbf001b4e921dd5','','','2022-03-13 15:27:12','2022-03-13 15:27:12','',0,'https://capitalbookkeepingco.com/3a80f8dda5be3e117dbf001b4e921dd5/',0,'oembed_cache','',0),(587,0,'2022-03-13 15:27:12','2022-03-13 15:27:12','<blockquote class=\"wp-embedded-content\" data-secret=\"2FkxuiKWWN\"><a href=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Local Biz Listings\" src=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=i4s7E8uoi9#?secret=2FkxuiKWWN\" data-secret=\"2FkxuiKWWN\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b89122b11b543461b122e3df8a10d5f0','','','2022-03-13 15:27:12','2022-03-13 15:27:12','',0,'https://capitalbookkeepingco.com/b89122b11b543461b122e3df8a10d5f0/',0,'oembed_cache','',0),(588,0,'2022-03-13 15:27:16','2022-03-13 15:27:16','<blockquote class=\"wp-embedded-content\" data-secret=\"0UzKqK60hC\"><a href=\"https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Local Citations\" src=\"https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=i70rZLpbK7#?secret=0UzKqK60hC\" data-secret=\"0UzKqK60hC\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','85146c96e1bd355acd602d4704da0f4e','','','2022-03-13 15:27:16','2022-03-13 15:27:16','',0,'https://capitalbookkeepingco.com/85146c96e1bd355acd602d4704da0f4e/',0,'oembed_cache','',0),(589,0,'2022-03-13 15:27:17','2022-03-13 15:27:17','<blockquote class=\"wp-embedded-content\" data-secret=\"9oqn5FivFK\"><a href=\"https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Local Listings Now\" src=\"https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=sHO2MuA2zU#?secret=9oqn5FivFK\" data-secret=\"9oqn5FivFK\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','74cbae4748f017a029430f87ce60cd85','','','2022-03-13 15:27:17','2022-03-13 15:27:17','',0,'https://capitalbookkeepingco.com/74cbae4748f017a029430f87ce60cd85/',0,'oembed_cache','',0),(590,0,'2022-03-13 15:27:18','2022-03-13 15:27:18','<blockquote class=\"wp-embedded-content\" data-secret=\"gDHz3Fe1Ak\"><a href=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Near By Citations\" src=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=dlbPxuAlFa#?secret=gDHz3Fe1Ak\" data-secret=\"gDHz3Fe1Ak\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','37cbb450220c64a0c91f678331ebaec4','','','2022-03-13 15:27:18','2022-03-13 15:27:18','',0,'https://capitalbookkeepingco.com/37cbb450220c64a0c91f678331ebaec4/',0,'oembed_cache','',0),(591,0,'2022-03-13 15:27:18','2022-03-13 15:27:18','<blockquote class=\"wp-embedded-content\" data-secret=\"LK8kdlmE8T\"><a href=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best Online Biz Directory\" src=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=DWtWv3iCjz#?secret=LK8kdlmE8T\" data-secret=\"LK8kdlmE8T\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','60a4cbdd889e4adff3aab9e8d0b4a9a1','','','2022-03-13 15:27:18','2022-03-13 15:27:18','',0,'https://capitalbookkeepingco.com/60a4cbdd889e4adff3aab9e8d0b4a9a1/',0,'oembed_cache','',0),(592,0,'2022-03-13 15:27:19','2022-03-13 15:27:19','<blockquote class=\"wp-embedded-content\" data-secret=\"uu1p6X98rC\"><a href=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best  USA Biz Directory\" src=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=9BiUSHS4Z9#?secret=uu1p6X98rC\" data-secret=\"uu1p6X98rC\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','70deabdd040abe6b1e21b94b3be45e0b','','','2022-03-13 15:27:19','2022-03-13 15:27:19','',0,'https://capitalbookkeepingco.com/70deabdd040abe6b1e21b94b3be45e0b/',0,'oembed_cache','',0),(593,0,'2022-03-13 15:27:19','2022-03-13 15:27:19','<blockquote class=\"wp-embedded-content\" data-secret=\"LaEc4XzUE6\"><a href=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best USA Biz Listing\" src=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=zHTkMmXQxy#?secret=LaEc4XzUE6\" data-secret=\"LaEc4XzUE6\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','893af6349014adf94395a2c6c69c9782','','','2022-03-13 15:27:19','2022-03-13 15:27:19','',0,'https://capitalbookkeepingco.com/893af6349014adf94395a2c6c69c9782/',0,'oembed_cache','',0),(594,0,'2022-03-13 15:27:19','2022-03-13 15:27:19','<blockquote class=\"wp-embedded-content\" data-secret=\"tw9pUih5Zq\"><a href=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best US Biz\" src=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=4TNsYsRmo7#?secret=tw9pUih5Zq\" data-secret=\"tw9pUih5Zq\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','f53288ad15b821ec6c5b508222a8daaa','','','2022-03-13 15:27:19','2022-03-13 15:27:19','',0,'https://capitalbookkeepingco.com/f53288ad15b821ec6c5b508222a8daaa/',0,'oembed_cache','',0),(595,0,'2022-03-13 15:27:20','2022-03-13 15:27:20','<blockquote class=\"wp-embedded-content\" data-secret=\"IyHGrH4z8Y\"><a href=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best US Business\" src=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=IeSeMFRZnt#?secret=IyHGrH4z8Y\" data-secret=\"IyHGrH4z8Y\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','95758f486bc6c77c0c6373806b4eb763','','','2022-03-13 15:27:20','2022-03-13 15:27:20','',0,'https://capitalbookkeepingco.com/95758f486bc6c77c0c6373806b4eb763/',0,'oembed_cache','',0),(596,0,'2022-03-13 15:27:20','2022-03-13 15:27:20','<blockquote class=\"wp-embedded-content\" data-secret=\"b3baCoE0Dk\"><a href=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Best US Businesses\" src=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=TngcKcDZW0#?secret=b3baCoE0Dk\" data-secret=\"b3baCoE0Dk\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','48805140314ff8e5374aa6d52e8dc2eb','','','2022-03-13 15:27:20','2022-03-13 15:27:20','',0,'https://capitalbookkeepingco.com/48805140314ff8e5374aa6d52e8dc2eb/',0,'oembed_cache','',0),(597,0,'2022-03-13 15:27:20','2022-03-13 15:27:20','<blockquote class=\"wp-embedded-content\" data-secret=\"w3FrPWYmJJ\"><a href=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Big Daddy Biz Listings\" src=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=41FhiDfZOX#?secret=w3FrPWYmJJ\" data-secret=\"w3FrPWYmJJ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','66ef6d053761e7967e6e155c0249e4b2','','','2022-03-13 15:27:20','2022-03-13 15:27:20','',0,'https://capitalbookkeepingco.com/66ef6d053761e7967e6e155c0249e4b2/',0,'oembed_cache','',0),(598,0,'2022-03-13 15:27:21','2022-03-13 15:27:21','<blockquote class=\"wp-embedded-content\" data-secret=\"J7LpkMMeZb\"><a href=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Big Girl Business Listings\" src=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=sfNkwNc94B#?secret=J7LpkMMeZb\" data-secret=\"J7LpkMMeZb\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','edcfb34100694ade541a35db3b10ebdc','','','2022-03-13 15:27:21','2022-03-13 15:27:21','',0,'https://capitalbookkeepingco.com/edcfb34100694ade541a35db3b10ebdc/',0,'oembed_cache','',0),(599,0,'2022-03-13 15:27:21','2022-03-13 15:27:21','<blockquote class=\"wp-embedded-content\" data-secret=\"cjFDxRjpNG\"><a href=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Big Red Business Listings\" src=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=XRqTbi4lAj#?secret=cjFDxRjpNG\" data-secret=\"cjFDxRjpNG\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','2aa92fad0436077a637e91cd517bc801','','','2022-03-13 15:27:21','2022-03-13 15:27:21','',0,'https://capitalbookkeepingco.com/2aa92fad0436077a637e91cd517bc801/',0,'oembed_cache','',0),(600,0,'2022-03-13 15:27:21','2022-03-13 15:27:21','<blockquote class=\"wp-embedded-content\" data-secret=\"zPUTiTLcVq\"><a href=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Citations\" src=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=C4wccaCrg9#?secret=zPUTiTLcVq\" data-secret=\"zPUTiTLcVq\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a12f19c4bd1a22f98dd7693c0e125b0e','','','2022-03-13 15:27:21','2022-03-13 15:27:21','',0,'https://capitalbookkeepingco.com/a12f19c4bd1a22f98dd7693c0e125b0e/',0,'oembed_cache','',0),(601,0,'2022-03-13 15:27:22','2022-03-13 15:27:22','<blockquote class=\"wp-embedded-content\" data-secret=\"qimeJvIsbR\"><a href=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listing 120\" src=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=OhbXtLLFuq#?secret=qimeJvIsbR\" data-secret=\"qimeJvIsbR\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','ba0edec1966527dfa256bfea6e0e9616','','','2022-03-13 15:27:22','2022-03-13 15:27:22','',0,'https://capitalbookkeepingco.com/ba0edec1966527dfa256bfea6e0e9616/',0,'oembed_cache','',0),(602,0,'2022-03-13 15:27:22','2022-03-13 15:27:22','<blockquote class=\"wp-embedded-content\" data-secret=\"pskXO9869r\"><a href=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listing R Us\" src=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=582o1cExGK#?secret=pskXO9869r\" data-secret=\"pskXO9869r\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','12bc329fb48ef64ec0e92bafe9e58dfe','','','2022-03-13 15:27:22','2022-03-13 15:27:22','',0,'https://capitalbookkeepingco.com/12bc329fb48ef64ec0e92bafe9e58dfe/',0,'oembed_cache','',0),(603,0,'2022-03-13 15:27:23','2022-03-13 15:27:23','<blockquote class=\"wp-embedded-content\" data-secret=\"P0APXwPx8I\"><a href=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listings 123\" src=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=MJ1ZeQm30l#?secret=P0APXwPx8I\" data-secret=\"P0APXwPx8I\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','1cdd3b8b1c4192acc473d785b0f61b0b','','','2022-03-13 15:27:23','2022-03-13 15:27:23','',0,'https://capitalbookkeepingco.com/1cdd3b8b1c4192acc473d785b0f61b0b/',0,'oembed_cache','',0),(604,0,'2022-03-13 15:27:23','2022-03-13 15:27:23','<blockquote class=\"wp-embedded-content\" data-secret=\"RGN38b1iqF\"><a href=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listing USA\" src=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=mNSNoVWOJa#?secret=RGN38b1iqF\" data-secret=\"RGN38b1iqF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','2a14141424d397d1c694fb801cd25831','','','2022-03-13 15:27:23','2022-03-13 15:27:23','',0,'https://capitalbookkeepingco.com/2a14141424d397d1c694fb801cd25831/',0,'oembed_cache','',0),(605,0,'2022-03-13 15:27:24','2022-03-13 15:27:24','<blockquote class=\"wp-embedded-content\" data-secret=\"1aBsqqp8Fl\"><a href=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Listing USA\" src=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=SEtjos99dF#?secret=1aBsqqp8Fl\" data-secret=\"1aBsqqp8Fl\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','abebb88c8d1f3e86c571edc25d800f7d','','','2022-03-13 15:27:24','2022-03-13 15:27:24','',0,'https://capitalbookkeepingco.com/abebb88c8d1f3e86c571edc25d800f7d/',0,'oembed_cache','',0),(606,0,'2022-03-13 15:27:24','2022-03-13 15:27:24','<blockquote class=\"wp-embedded-content\" data-secret=\"8slkEi9UrP\"><a href=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Lists USA\" src=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=rMa9lhRRoR#?secret=8slkEi9UrP\" data-secret=\"8slkEi9UrP\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','8d2e82c3ac5580728cd71b07e922e7fd','','','2022-03-13 15:27:24','2022-03-13 15:27:24','',0,'https://capitalbookkeepingco.com/8d2e82c3ac5580728cd71b07e922e7fd/',0,'oembed_cache','',0),(607,0,'2022-03-13 15:27:25','2022-03-13 15:27:25','<blockquote class=\"wp-embedded-content\" data-secret=\"5v0AlzTNoF\"><a href=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Biz Local Lists\" src=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=a3hRvgw3RD#?secret=5v0AlzTNoF\" data-secret=\"5v0AlzTNoF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','15fad9e87779e9ff4e43b49d107cf3ce','','','2022-03-13 15:27:25','2022-03-13 15:27:25','',0,'https://capitalbookkeepingco.com/15fad9e87779e9ff4e43b49d107cf3ce/',0,'oembed_cache','',0),(608,0,'2022-03-13 15:27:25','2022-03-13 15:27:25','<blockquote class=\"wp-embedded-content\" data-secret=\"zY0tCDCRPD\"><a href=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Boss Biz Listings\" src=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=r11g3J8lMu#?secret=zY0tCDCRPD\" data-secret=\"zY0tCDCRPD\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','35feed698e4c5f04eda82251670632b1','','','2022-03-13 15:27:25','2022-03-13 15:27:25','',0,'https://capitalbookkeepingco.com/35feed698e4c5f04eda82251670632b1/',0,'oembed_cache','',0),(609,0,'2022-03-13 15:27:25','2022-03-13 15:27:25','<blockquote class=\"wp-embedded-content\" data-secret=\"0SESAd5zPE\"><a href=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Boss Business Listing\" src=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=riza4sKoPV#?secret=0SESAd5zPE\" data-secret=\"0SESAd5zPE\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','9aa983414ff23bbecd7e2d0a7da93372','','','2022-03-13 15:27:25','2022-03-13 15:27:25','',0,'https://capitalbookkeepingco.com/9aa983414ff23bbecd7e2d0a7da93372/',0,'oembed_cache','',0),(610,0,'2022-03-13 15:27:25','2022-03-13 15:27:25','<blockquote class=\"wp-embedded-content\" data-secret=\"YbMTRwFqOy\"><a href=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Boss Local Listings\" src=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=ubsnd8fMJR#?secret=YbMTRwFqOy\" data-secret=\"YbMTRwFqOy\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a9fc7562bdda6a0351c4ba60bbe98ed7','','','2022-03-13 15:27:25','2022-03-13 15:27:25','',0,'https://capitalbookkeepingco.com/a9fc7562bdda6a0351c4ba60bbe98ed7/',0,'oembed_cache','',0),(611,0,'2022-03-13 15:27:26','2022-03-13 15:27:26','<blockquote class=\"wp-embedded-content\" data-secret=\"2OpL3dCda3\"><a href=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Business Citation Forum\" src=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=WGpLiFnYbC#?secret=2OpL3dCda3\" data-secret=\"2OpL3dCda3\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','36c8cdddfd0ad43b5ec00e652c6ecb83','','','2022-03-13 15:27:26','2022-03-13 15:27:26','',0,'https://capitalbookkeepingco.com/36c8cdddfd0ad43b5ec00e652c6ecb83/',0,'oembed_cache','',0),(612,0,'2022-03-13 15:27:27','2022-03-13 15:27:27','<blockquote class=\"wp-embedded-content\" data-secret=\"DMFhAEmv69\"><a href=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\">Capital Bookkeeping Company</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Capital Bookkeeping Company&#8221; &#8212; Business Citation Local\" src=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/embed/#?secret=oVHDEFXnVh#?secret=DMFhAEmv69\" data-secret=\"DMFhAEmv69\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','2181ca99ea40c7e60a9515dade5b3c72','','','2022-03-13 15:27:27','2022-03-13 15:27:27','',0,'https://capitalbookkeepingco.com/2181ca99ea40c7e60a9515dade5b3c72/',0,'oembed_cache','',0),(504,1,'2022-03-12 17:19:27','2022-03-12 17:19:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Find Us Online\" _builder_version=\"4.14.9\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"]<table class=\"cpop_public_table\">\n<tbody>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>120businesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123companydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123localdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123locallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1bizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1localbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AAA Business Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Abizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>acebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aceusbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andyslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>angiebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>authenticcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>automatedlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileyslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellsbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistingsever.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesslistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocallistingnow.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestnearbycitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestonlinebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusiness.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigdaddybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>biggirlbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigredbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlisting123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bosslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationlocal.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesslistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>camelotlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Caseylocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>cheaplocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>checkyobizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationpowerhouse.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Citationsbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentiallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ezlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>First Business Listing</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>flashlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>headbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Hero Local Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>impressivelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jenslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>largestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Listingtopbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizlistingsAZ.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizmentions.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localblistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitationbits.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessciting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationboard.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localdirectoryusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingdaddy.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingnearme.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingteam.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingurus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locatecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mastermindcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>millionlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>namethatcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgenbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgencitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>organiclocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>qualitybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>quickbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>southernlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thefirstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thelocalbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thetopbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>theusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>todaysbestcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top20citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50localcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top75locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizpros.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topnotchbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusadirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>truelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>TZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USAtoplistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USbestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usbestbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>uslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>valuelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>vivahdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>wisecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>worldcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>yesbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Yeslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">    https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Find Us Online','','inherit','closed','closed','','495-revision-v1','','','2022-03-12 17:19:27','2022-03-12 17:19:27','',495,'https://capitalbookkeepingco.com/?p=504',0,'revision','',0),(503,1,'2022-03-12 17:18:47','2022-03-12 17:18:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Find Us Online\" header_fullscreen=\"on\" _builder_version=\"4.14.9\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2022/01/agriculture.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"agriculture\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"]<table class=\"cpop_public_table\">\n<tbody>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>120businesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123companydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123localdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123locallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1bizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1localbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AAA Business Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Abizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>acebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aceusbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andyslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>angiebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>authenticcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>automatedlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileyslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellsbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistingsever.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesslistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocallistingnow.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestnearbycitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestonlinebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusiness.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigdaddybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>biggirlbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigredbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlisting123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bosslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationlocal.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesslistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>camelotlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Caseylocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>cheaplocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>checkyobizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationpowerhouse.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Citationsbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentiallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ezlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>First Business Listing</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>flashlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>headbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Hero Local Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>impressivelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jenslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>largestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Listingtopbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizlistingsAZ.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizmentions.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localblistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitationbits.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessciting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationboard.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localdirectoryusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingdaddy.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingnearme.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingteam.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingurus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locatecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mastermindcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>millionlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>namethatcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgenbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgencitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>organiclocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>qualitybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>quickbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>southernlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thefirstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thelocalbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thetopbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>theusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>todaysbestcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top20citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50localcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top75locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizpros.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topnotchbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusadirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>truelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>TZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USAtoplistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USbestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usbestbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>uslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>valuelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>vivahdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>wisecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>worldcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>yesbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Yeslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">    https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Find Us Online','','inherit','closed','closed','','495-revision-v1','','','2022-03-12 17:18:47','2022-03-12 17:18:47','',495,'https://capitalbookkeepingco.com/?p=503',0,'revision','',0),(502,1,'2022-03-12 17:17:37','2022-03-12 17:17:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping Co\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table class=\"cpop_public_table\">\n<tbody>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>120businesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123companydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123localdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123locallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1bizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1localbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AAA Business Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Abizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>acebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aceusbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andyslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>angiebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>authenticcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>automatedlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileyslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellsbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistingsever.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesslistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocallistingnow.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestnearbycitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestonlinebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusiness.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigdaddybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>biggirlbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigredbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlisting123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bosslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationlocal.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesslistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>camelotlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Caseylocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>cheaplocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>checkyobizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationpowerhouse.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Citationsbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentiallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ezlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>First Business Listing</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>flashlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>headbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Hero Local Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>impressivelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jenslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>largestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Listingtopbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizlistingsAZ.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizmentions.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localblistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitationbits.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessciting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationboard.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localdirectoryusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingdaddy.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingnearme.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingteam.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingurus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locatecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mastermindcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>millionlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>namethatcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgenbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgencitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>organiclocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>qualitybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>quickbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>southernlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thefirstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thelocalbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thetopbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>theusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>todaysbestcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top20citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50localcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top75locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizpros.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topnotchbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusadirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>truelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>TZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USAtoplistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USbestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usbestbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>uslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>valuelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>vivahdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>wisecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>worldcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>yesbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">   https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Yeslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\">    https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Find Us Online','','inherit','closed','closed','','495-revision-v1','','','2022-03-12 17:17:37','2022-03-12 17:17:37','',495,'https://capitalbookkeepingco.com/?p=502',0,'revision','',0),(500,1,'2022-03-12 17:16:14','2022-03-12 17:16:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping Co\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.14.9\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table class=\"cpop_public_table\">\n<tbody>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>120businesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123companydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123localdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123locallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1bizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1localbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AAA Business Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Abizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>acebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aceusbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andyslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>angiebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>authenticcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>automatedlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileyslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellsbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistingsever.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesslistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocallistingnow.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestnearbycitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestonlinebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusiness.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigdaddybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>biggirlbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigredbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlisting123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bosslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationlocal.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesslistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>camelotlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Caseylocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>cheaplocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>checkyobizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationpowerhouse.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Citationsbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentiallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ezlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>First Business Listing</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>flashlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>headbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Hero Local Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>impressivelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jenslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>largestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Listingtopbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizlistingsAZ.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizmentions.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localblistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitationbits.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessciting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationboard.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localdirectoryusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingdaddy.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingnearme.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingteam.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingurus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locatecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mastermindcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>millionlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>namethatcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgenbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgencitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://omnibizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://omnilocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnilocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://omnilocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>organiclocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://organiclocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://popularbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://popularbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://popularbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>popularbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://popularbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://primabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://primebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://primebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://primebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primebusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://primebusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://primelocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://primelocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>primelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://primelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>qualitybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://qualitybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>quickbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://quickbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://rainbowbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>rainbowlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://rainbowlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://rcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://rcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>RClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://rclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>southernlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://southernlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebestbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebestbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebestbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebestbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebestbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thefirstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thefirstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thelocalbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thelocalbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>thetopbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://thetopbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>theusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://theusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>todaysbestcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://todaysbestcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://top100bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://top100businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top100citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://top100citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top20citations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://top20citations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://top50bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://top50businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50localcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://top50localcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top50locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://top50locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>top75locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://top75locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topcompanylisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topcompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topcompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://toplocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://toplocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>toplocalbizpros.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://toplocalbizpros.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topnotchbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topnotchbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topratedbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topratedbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topratedbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topratedbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topratedbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topratedbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topratedbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topusabiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topusabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusadirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topusadirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>topusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://topusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>truelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://truelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>TZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://tzlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usabizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usabizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usabusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usabusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usabusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usacompanylistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usacompanylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usacompanylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usatopbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usatopbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usatopdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usatopdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USAtoplistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usatoplistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>USbestbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usbestbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>usbestbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://usbestbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>uslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://uslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>valuelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://valuelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://vipcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>VIPlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://viplocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://virallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>virallocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://virallocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>vivahdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://vivahdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>wisecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://wisecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>worldcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://worldcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>yesbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://yesbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Yeslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"> <img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\" \" alt=\"Permalink Button\" /> https://yeslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Find Us Online','','inherit','closed','closed','','495-revision-v1','','','2022-03-12 17:16:14','2022-03-12 17:16:14','',495,'https://capitalbookkeepingco.com/?p=500',0,'revision','',0);
INSERT INTO `wpvu_posts` VALUES (499,1,'2022-03-12 17:12:14','2022-03-12 17:12:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.14.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Capital Bookkeeping Co\" header_fullscreen=\"on\" button_one_text=\"Contact Us\" _builder_version=\"4.14.2\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(0,0,0,0.48)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://capitalbookkeepingco.com/wp-content/uploads/2021/12/finance-accounting-concept-business-woman-working-desk-scaled.jpg\" global_colors_info=\"{}\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.14.9\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.14.9\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.14.9\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.14.9\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table class=\"cpop_public_table\">\n<tbody>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>120businesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://120businesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://123bizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://123bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://123bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123companydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://123companydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123localdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://123localdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>123locallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://123locallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://a1bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://a1bizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1bizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://a1bizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1bizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://a1bizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://a1businesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>A1businesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://a1businesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1localbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://a1localbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>a1locallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://a1locallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AAA Business Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://aaabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaaBizListings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://aaabizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://aaabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalBizListing.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://aaalocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://aaalocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aaalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://aaalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://abcbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abcbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://abcbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://abcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABCbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://abcbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://abclocalcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>abclocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://abclocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://abclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ABClocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://abclocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Abizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://abizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://accuratebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>accuratebizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://accuratebizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>acebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://acebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>aceusbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://aceusbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://americanbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://americanbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://americanbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanbizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://americanbizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://americancitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americancitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://americancitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://americanlocalbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://americanlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>americanlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://americanlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://andysbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://andysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Andyslocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://andyslocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>angiebizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://angiebizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>authenticcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://authenticcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>automatedlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://automatedlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azbusinesslist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZbusinesslists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azbusinesslists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>AZlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://azlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://baileybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://baileybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://baileylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>baileysbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://baileysbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Baileyslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://baileyslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bellbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellsbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bellsbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bellslocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bellslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Bellslocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bellslocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbizlistingsever.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestbizlistingsever.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestbusinesslistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestbusinesslistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestcompanydirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestcompanydirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestcompanydirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestlocalbizcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestlocalbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestlocalbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestlocallistingnow.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestlocallistingnow.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestnearbycitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestnearbycitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestonlinebizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestonlinebizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestusabizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestusbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusiness.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestusbusiness.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bestusbusinesses.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bestusbusinesses.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigdaddybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bigdaddybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>biggirlbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://biggirlbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bigredbusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bigredbusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlisting123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bizlisting123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bizlistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bizlistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bizlistingsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bizlistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlistsusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bizlistsusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bizlocallists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bizlocallists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bossbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bossbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bossbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>bosslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bosslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://businesscitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationlocal.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://businesscitationlocal.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesscitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://businesscitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>businesslistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://businesslistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bzbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>BZbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://bzbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>camelotlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://camelotlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://caseybizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseybizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://caseybizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Caseylocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://caseylocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>caseylocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://caseylocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>cheaplocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://cheaplocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>checkyobizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://checkyobizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://citationbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>citationpowerhouse.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://citationpowerhouse.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Citationsbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://citationsbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://completebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>completelocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://completelocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://elitebizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>elitebusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://elitebusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://essentialbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentialbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://essentialbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>essentiallocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://essentiallocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>ezlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://ezlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>First Business Listing</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://firstbizcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://firstbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://firstbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://firstbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinessdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://firstbusinessdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstbusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://firstbusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>firstlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://firstlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>flashlocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://flashlocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://greatbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://greatbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://greatlocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>greatlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://greatlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>headbizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://headbizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Hero Local Listings</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://herobizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herobizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://herobizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://herolocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>herolocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://herolocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>impressivelocalcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://impressivelocalcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://jensbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jensbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://jensbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Jenslocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://jenslocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KCbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://kcbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>KClocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://kclocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>largestbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://largestbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://leadingbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://leadingbizlist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadingbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://leadingbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://leadinglocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>leadinglocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://leadinglocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>Listingtopbiz.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://listingtopbiz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizdirectories.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localbizdirectories.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizlistingsAZ.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localbizlistingsaz.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbizmentions.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localbizmentions.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localblistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localblistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localbusinesscitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinesscitationbits.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localbusinesscitationbits.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessciting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localbusinessciting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylist.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localbusinessdirectorylist.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localbusinessdirectorylists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localbusinessdirectorylists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationboard.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localcitationboard.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationforum.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localcitationforum.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localcitationguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsguru.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localcitationsguru.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localcitationsquad.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localcitationsquad.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localdirectoryusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localdirectoryusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingdaddy.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://locallistingdaddy.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingheaven.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://locallistingheaven.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingnearme.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://locallistingnearme.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingrus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://locallistingrus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistings123.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://locallistings123.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingteam.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://locallistingteam.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingurus.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://locallistingurus.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locallistingusa.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://locallistingusa.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>localusabizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://localusabizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>locatecitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://locatecitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mastermindcitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://mastermindcitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabizlists.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://megabizlists.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://megabusinesslisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megabusinesslistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://megabusinesslistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://megalocallisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>megalocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://megalocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizdirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://mexterbizdirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterbizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://mexterbizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocaldirectory.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://mexterlocaldirectory.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>mexterlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://mexterlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>millionlocallistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://millionlocallistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>namethatcitation.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://namethatcitation.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgenbusinesscitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://nextgenbusinesscitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>nextgencitations.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://nextgencitations.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlisting.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" rel=\"noopener\"><img class=\"cpop_dashboard_option_icon\" title=\"Link\" src=\"https://citationvault.com/wp-content/plugins/customer_profile_control_panel_main/includes/images/link-solid.svg\" alt=\"Permalink Button\" /> https://omnibizlisting.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/</a></span></td>\n</tr>\n<tr>\n<td class=\"cpop_business_links_site_name_data\"><b>omnibizlistings.com</b></td>\n<td><span class=\"cpop_business_links_permalink_span\"><a href=\"https://omnibizlistings.com/west-kelowna/bookkeeping-service-west-kelowna-british-columbia/capital-bookkeeping-company/\" target=\"_blank\" 